Unicode Finder

"ꁖ" U+A056(YI SYLLABLE BBIT)

U+A056
區塊名稱
Yi Syllables
名稱
YI SYLLABLE BBIT

Programming

C
\uA056
JavaScript
\uA056
Java
\uA056
Json
\uA056
Python
\uA056
Perl
\x{A056}
PHP
\x{A056}
Ruby
\u{A056}
Rust
\u{A056}
Go
\uA056

Web

CSS
\00A056
HtmlDecimal
ꁖ
HtmlHexadecimal
ꁖ
Url
%EA%81%96

Code

MD5
458a7925535ebf46120dbc1ebf037c95
Sha1
98c11972be038106f34107539b9811473dd3f3ad
Base64
6oGW

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\uA056';
console.log(char);  // Output: ꁖ

Java:

char c = '\uA056';
System.out.println(c);  // Output: ꁖ

JSON:

{"text": "\uA056"}  // Value: ꁖ

Python:

char = '\uA056'
print(char)  # Output: ꁖ

Perl:

my $char = "\x{A056}";
print $char;  # Output: ꁖ

PHP:

$char = "\x{A056}";
echo $char;  // Output: ꁖ

Ruby:

char = "\u{A056}"
puts char  # Output: ꁖ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#41046;</p>  <!-- Display: ꁖ -->

HTML Hexadecimal:

<p>HTML hex: &#xA056;</p>  <!-- Display: ꁖ -->

URL Encoding:

// ꁖ URL encoding
https://unicodefinder.com/search.php?query=%EA%81%96

Encodings

MD5:

458a7925535ebf46120dbc1ebf037c95

SHA1:

98c11972be038106f34107539b9811473dd3f3ad

Base64:

6oGW