Unicode Finder

"ꇬ" U+A1EC(YI SYLLABLE GO)

U+A1EC
區塊名稱
Yi Syllables
名稱
YI SYLLABLE GO

Programming

C
\uA1EC
JavaScript
\uA1EC
Java
\uA1EC
Json
\uA1EC
Python
\uA1EC
Perl
\x{A1EC}
PHP
\x{A1EC}
Ruby
\u{A1EC}
Rust
\u{A1EC}
Go
\uA1EC

Web

CSS
\00A1EC
HtmlDecimal
ꇬ
HtmlHexadecimal
ꇬ
Url
%EA%87%AC

Code

MD5
fc91ca296a1b8dfe5141a307451e29f1
Sha1
ecb825cb143effedcdce321f192c1c6b7ca84398
Base64
6oes

使用範例

Programming Languages

C:

char c = '\uA1EC';
printf("%c\n", c);  // Output: ꇬ

JavaScript:

const char = '\uA1EC';
console.log(char);  // Output: ꇬ

Java:

char c = '\uA1EC';
System.out.println(c);  // Output: ꇬ

JSON:

{"text": "\uA1EC"}  // Value: ꇬ

Python:

char = '\uA1EC'
print(char)  # Output: ꇬ

Perl:

my $char = "\x{A1EC}";
print $char;  # Output: ꇬ

PHP:

$char = "\x{A1EC}";
echo $char;  // Output: ꇬ

Ruby:

char = "\u{A1EC}"
puts char  # Output: ꇬ

Rust:

let c = '\u{A1EC}';
println!("{}", c);  // Output: ꇬ

Go:

char := '\uA1EC'
fmt.Printf("%c\n", char)  // Output: ꇬ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00A1EC";  /* Display: ꇬ */
}

HTML Decimal:

<p>HTML decimal: &#41452;</p>  <!-- Display: ꇬ -->

HTML Hexadecimal:

<p>HTML hex: &#xA1EC;</p>  <!-- Display: ꇬ -->

URL Encoding:

// ꇬ URL encoding
https://unicodefinder.com/search.php?query=%EA%87%AC

Encodings

MD5:

fc91ca296a1b8dfe5141a307451e29f1

SHA1:

ecb825cb143effedcdce321f192c1c6b7ca84398

Base64:

6oes