Linux id-dci-web1412.main-hosting.eu 5.14.0-611.20.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jan 14 06:35:04 EST 2026 x86_64
LiteSpeed
: 2a02:4780:6:1512:0:19fc:adf1:2 | : 216.73.216.85
Cant Read [ /etc/named.conf ]
8.1.34
u435990001
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
opt /
go /
pkg /
mod /
golang.org /
x /
text@v0.14.0 /
width /
[ HOME SHELL ]
Name
Size
Permission
Action
common_test.go
2.49
KB
-r--r--r--
example_test.go
1.38
KB
-r--r--r--
gen.go
3.14
KB
-r--r--r--
gen_common.go
2.59
KB
-r--r--r--
gen_trieval.go
797
B
-r--r--r--
kind_string.go
787
B
-r--r--r--
runes_test.go
11.87
KB
-r--r--r--
tables10.0.0.go
74.25
KB
-r--r--r--
tables11.0.0.go
75.38
KB
-r--r--r--
tables12.0.0.go
76.71
KB
-r--r--r--
tables13.0.0.go
76.53
KB
-r--r--r--
tables15.0.0.go
76.76
KB
-r--r--r--
tables9.0.0.go
71.37
KB
-r--r--r--
tables_test.go
1.49
KB
-r--r--r--
transform.go
5.67
KB
-r--r--r--
transform_test.go
13.83
KB
-r--r--r--
trieval.go
698
B
-r--r--r--
width.go
6.46
KB
-r--r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : example_test.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package width_test import ( "fmt" "golang.org/x/text/width" ) func ExampleTransformer_fold() { s := "abヲ₩○¥A" f := width.Fold.String(s) fmt.Printf("%U: %s\n", []rune(s), s) fmt.Printf("%U: %s\n", []rune(f), f) // Output: // [U+0061 U+0062 U+FF66 U+FFE6 U+FFEE U+FFE5 U+FF21]: abヲ₩○¥A // [U+0061 U+0062 U+30F2 U+20A9 U+25CB U+00A5 U+0041]: abヲ₩○¥A } func ExampleTransformer_widen() { s := "ab¥ヲ₩○" w := width.Widen.String(s) fmt.Printf("%U: %s\n", []rune(s), s) fmt.Printf("%U: %s\n", []rune(w), w) // Output: // [U+0061 U+0062 U+00A5 U+FF66 U+20A9 U+FFEE]: ab¥ヲ₩○ // [U+FF41 U+FF42 U+FFE5 U+30F2 U+FFE6 U+25CB]: ab¥ヲ₩○ } func ExampleTransformer_narrow() { s := "abヲ₩○¥A" n := width.Narrow.String(s) fmt.Printf("%U: %s\n", []rune(s), s) fmt.Printf("%U: %s\n", []rune(n), n) // Ambiguous characters with a halfwidth equivalent get mapped as well. s = "←" n = width.Narrow.String(s) fmt.Printf("%U: %s\n", []rune(s), s) fmt.Printf("%U: %s\n", []rune(n), n) // Output: // [U+0061 U+0062 U+30F2 U+FFE6 U+25CB U+FFE5 U+FF21]: abヲ₩○¥A // [U+0061 U+0062 U+FF66 U+20A9 U+FFEE U+00A5 U+0041]: abヲ₩○¥A // [U+2190]: ← // [U+FFE9]: ← }
Close