Unicode Finder

"ꁋ" U+A04B(YI SYLLABLE PUX)

U+A04B
區塊名稱
Yi Syllables
名稱
YI SYLLABLE PUX

Programming

C
\uA04B
JavaScript
\uA04B
Java
\uA04B
Json
\uA04B
Python
\uA04B
Perl
\x{A04B}
PHP
\x{A04B}
Ruby
\u{A04B}
Rust
\u{A04B}
Go
\uA04B

Web

CSS
\00A04B
HtmlDecimal
ꁋ
HtmlHexadecimal
ꁋ
Url
%EA%81%8B

Code

MD5
6762a45781b26b0628a0662bebb5847a
Sha1
b441d2b15be22a2af7a2f5a4c8bd4efaa1193c95
Base64
6oGL

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\uA04B';
console.log(char);  // Output: ꁋ

Java:

char c = '\uA04B';
System.out.println(c);  // Output: ꁋ

JSON:

{"text": "\uA04B"}  // Value: ꁋ

Python:

char = '\uA04B'
print(char)  # Output: ꁋ

Perl:

my $char = "\x{A04B}";
print $char;  # Output: ꁋ

PHP:

$char = "\x{A04B}";
echo $char;  // Output: ꁋ

Ruby:

char = "\u{A04B}"
puts char  # Output: ꁋ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#41035;</p>  <!-- Display: ꁋ -->

HTML Hexadecimal:

<p>HTML hex: &#xA04B;</p>  <!-- Display: ꁋ -->

URL Encoding:

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

Encodings

MD5:

6762a45781b26b0628a0662bebb5847a

SHA1:

b441d2b15be22a2af7a2f5a4c8bd4efaa1193c95

Base64:

6oGL