Unicode Finder

"ꀜ" U+A01C(YI SYLLABLE BIE)

U+A01C
區塊名稱
Yi Syllables
名稱
YI SYLLABLE BIE

Programming

C
\uA01C
JavaScript
\uA01C
Java
\uA01C
Json
\uA01C
Python
\uA01C
Perl
\x{A01C}
PHP
\x{A01C}
Ruby
\u{A01C}
Rust
\u{A01C}
Go
\uA01C

Web

CSS
\00A01C
HtmlDecimal
ꀜ
HtmlHexadecimal
ꀜ
Url
%EA%80%9C

Code

MD5
257bdfdfc976771b1376499e97eda02d
Sha1
88be5eca61f9fcecd7502b2dc4ef02bbf28766d7
Base64
6oCc

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\uA01C';
console.log(char);  // Output: ꀜ

Java:

char c = '\uA01C';
System.out.println(c);  // Output: ꀜ

JSON:

{"text": "\uA01C"}  // Value: ꀜ

Python:

char = '\uA01C'
print(char)  # Output: ꀜ

Perl:

my $char = "\x{A01C}";
print $char;  # Output: ꀜ

PHP:

$char = "\x{A01C}";
echo $char;  // Output: ꀜ

Ruby:

char = "\u{A01C}"
puts char  # Output: ꀜ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40988;</p>  <!-- Display: ꀜ -->

HTML Hexadecimal:

<p>HTML hex: &#xA01C;</p>  <!-- Display: ꀜ -->

URL Encoding:

// ꀜ URL encoding
https://unicodefinder.com/search.php?query=%EA%80%9C

Encodings

MD5:

257bdfdfc976771b1376499e97eda02d

SHA1:

88be5eca61f9fcecd7502b2dc4ef02bbf28766d7

Base64:

6oCc