Unicode Finder

"ꄋ" U+A10B(YI SYLLABLE DUOX)

U+A10B
區塊名稱
Yi Syllables
名稱
YI SYLLABLE DUOX

Programming

C
\uA10B
JavaScript
\uA10B
Java
\uA10B
Json
\uA10B
Python
\uA10B
Perl
\x{A10B}
PHP
\x{A10B}
Ruby
\u{A10B}
Rust
\u{A10B}
Go
\uA10B

Web

CSS
\00A10B
HtmlDecimal
ꄋ
HtmlHexadecimal
ꄋ
Url
%EA%84%8B

Code

MD5
f880181c20306c050ea06716b815bbe5
Sha1
c3f7adba8b9094e66a30e196e2c97e13998ccc4f
Base64
6oSL

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\uA10B';
console.log(char);  // Output: ꄋ

Java:

char c = '\uA10B';
System.out.println(c);  // Output: ꄋ

JSON:

{"text": "\uA10B"}  // Value: ꄋ

Python:

char = '\uA10B'
print(char)  # Output: ꄋ

Perl:

my $char = "\x{A10B}";
print $char;  # Output: ꄋ

PHP:

$char = "\x{A10B}";
echo $char;  // Output: ꄋ

Ruby:

char = "\u{A10B}"
puts char  # Output: ꄋ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#41227;</p>  <!-- Display: ꄋ -->

HTML Hexadecimal:

<p>HTML hex: &#xA10B;</p>  <!-- Display: ꄋ -->

URL Encoding:

// ꄋ URL encoding
https://unicodefinder.com/search.php?query=%EA%84%8B

Encodings

MD5:

f880181c20306c050ea06716b815bbe5

SHA1:

c3f7adba8b9094e66a30e196e2c97e13998ccc4f

Base64:

6oSL