Unicode Finder

"ꋫ" U+A2EB(YI SYLLABLE ZZYRX)

U+A2EB
區塊名稱
Yi Syllables
名稱
YI SYLLABLE ZZYRX

Programming

C
\uA2EB
JavaScript
\uA2EB
Java
\uA2EB
Json
\uA2EB
Python
\uA2EB
Perl
\x{A2EB}
PHP
\x{A2EB}
Ruby
\u{A2EB}
Rust
\u{A2EB}
Go
\uA2EB

Web

CSS
\00A2EB
HtmlDecimal
ꋫ
HtmlHexadecimal
ꋫ
Url
%EA%8B%AB

Code

MD5
a962fe4a9016a4bf07d8118f13d6dd24
Sha1
52a96f822724afeb738c1e03fd4640a6c50aa6f6
Base64
6our

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\uA2EB';
console.log(char);  // Output: ꋫ

Java:

char c = '\uA2EB';
System.out.println(c);  // Output: ꋫ

JSON:

{"text": "\uA2EB"}  // Value: ꋫ

Python:

char = '\uA2EB'
print(char)  # Output: ꋫ

Perl:

my $char = "\x{A2EB}";
print $char;  # Output: ꋫ

PHP:

$char = "\x{A2EB}";
echo $char;  // Output: ꋫ

Ruby:

char = "\u{A2EB}"
puts char  # Output: ꋫ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#41707;</p>  <!-- Display: ꋫ -->

HTML Hexadecimal:

<p>HTML hex: &#xA2EB;</p>  <!-- Display: ꋫ -->

URL Encoding:

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

Encodings

MD5:

a962fe4a9016a4bf07d8118f13d6dd24

SHA1:

52a96f822724afeb738c1e03fd4640a6c50aa6f6

Base64:

6our