Unicode Finder

"ꀫ" U+A02B(YI SYLLABLE BEP)

U+A02B
區塊名稱
Yi Syllables
名稱
YI SYLLABLE BEP

Programming

C
\uA02B
JavaScript
\uA02B
Java
\uA02B
Json
\uA02B
Python
\uA02B
Perl
\x{A02B}
PHP
\x{A02B}
Ruby
\u{A02B}
Rust
\u{A02B}
Go
\uA02B

Web

CSS
\00A02B
HtmlDecimal
ꀫ
HtmlHexadecimal
ꀫ
Url
%EA%80%AB

Code

MD5
c6dc6d2c922982927f8da440743f780c
Sha1
fc5bc95125f5ceb1978dc686ef332aa55ec2cbb7
Base64
6oCr

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\uA02B';
console.log(char);  // Output: ꀫ

Java:

char c = '\uA02B';
System.out.println(c);  // Output: ꀫ

JSON:

{"text": "\uA02B"}  // Value: ꀫ

Python:

char = '\uA02B'
print(char)  # Output: ꀫ

Perl:

my $char = "\x{A02B}";
print $char;  # Output: ꀫ

PHP:

$char = "\x{A02B}";
echo $char;  // Output: ꀫ

Ruby:

char = "\u{A02B}"
puts char  # Output: ꀫ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#41003;</p>  <!-- Display: ꀫ -->

HTML Hexadecimal:

<p>HTML hex: &#xA02B;</p>  <!-- Display: ꀫ -->

URL Encoding:

// ꀫ URL encoding
https://unicodefinder.com/search.php?query=%EA%80%AB

Encodings

MD5:

c6dc6d2c922982927f8da440743f780c

SHA1:

fc5bc95125f5ceb1978dc686ef332aa55ec2cbb7

Base64:

6oCr