Unicode Finder

"娫" U+5A2B(CJK UNIFIED IDEOGRAPH-5A2B)

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

Programming

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

Web

CSS
\005A2B
HtmlDecimal
娫
HtmlHexadecimal
娫
Url
%E5%A8%AB

Code

MD5
1745514db2dfc73ad8b872466902571a
Sha1
804b7081478e958a5b430aebb0ef16a604de87ac
Base64
5air

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5A2B';
console.log(char);  // Output: 娫

Java:

char c = '\u5A2B';
System.out.println(c);  // Output: 娫

JSON:

{"text": "\u5A2B"}  // Value: 娫

Python:

char = '\u5A2B'
print(char)  # Output: 娫

Perl:

my $char = "\x{5A2B}";
print $char;  # Output: 娫

PHP:

$char = "\x{5A2B}";
echo $char;  // Output: 娫

Ruby:

char = "\u{5A2B}"
puts char  # Output: 娫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23083;</p>  <!-- Display: 娫 -->

HTML Hexadecimal:

<p>HTML hex: &#x5A2B;</p>  <!-- Display: 娫 -->

URL Encoding:

// 娫 URL encoding
https://unicodefinder.com/search.php?query=%E5%A8%AB

Encodings

MD5:

1745514db2dfc73ad8b872466902571a

SHA1:

804b7081478e958a5b430aebb0ef16a604de87ac

Base64:

5air