Unicode Finder

"娋" U+5A0B(CJK UNIFIED IDEOGRAPH-5A0B)

U+5A0B
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-5A0B

Programming

C
\u5A0B
JavaScript
\u5A0B
Java
\u5A0B
Json
\u5A0B
Python
\u5A0B
Perl
\x{5A0B}
PHP
\x{5A0B}
Ruby
\u{5A0B}
Rust
\u{5A0B}
Go
\u5A0B

Web

CSS
\005A0B
HtmlDecimal
娋
HtmlHexadecimal
娋
Url
%E5%A8%8B

Code

MD5
03ebca0159d787a9aceb9599daddb589
Sha1
dfec99ea9c698a23d26f9532a1c488bba88a2fe3
Base64
5aiL

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5A0B';
console.log(char);  // Output: 娋

Java:

char c = '\u5A0B';
System.out.println(c);  // Output: 娋

JSON:

{"text": "\u5A0B"}  // Value: 娋

Python:

char = '\u5A0B'
print(char)  # Output: 娋

Perl:

my $char = "\x{5A0B}";
print $char;  # Output: 娋

PHP:

$char = "\x{5A0B}";
echo $char;  // Output: 娋

Ruby:

char = "\u{5A0B}"
puts char  # Output: 娋

Rust:

let c = '\u{5A0B}';
println!("{}", c);  // Output: 娋

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005A0B";  /* Display: 娋 */
}

HTML Decimal:

<p>HTML decimal: &#23051;</p>  <!-- Display: 娋 -->

HTML Hexadecimal:

<p>HTML hex: &#x5A0B;</p>  <!-- Display: 娋 -->

URL Encoding:

// 娋 URL encoding
https://unicodefinder.com/search.php?query=%E5%A8%8B

Encodings

MD5:

03ebca0159d787a9aceb9599daddb589

SHA1:

dfec99ea9c698a23d26f9532a1c488bba88a2fe3

Base64:

5aiL