Unicode Finder

"娬" U+5A2C(CJK UNIFIED IDEOGRAPH-5A2C)

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

Programming

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

Web

CSS
\005A2C
HtmlDecimal
娬
HtmlHexadecimal
娬
Url
%E5%A8%AC

Code

MD5
eb588de6cb01702d87689d24abd19759
Sha1
3e54bc3c128b631687bb251265d6e58eba7340cb
Base64
5ais

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5A2C';
console.log(char);  // Output: 娬

Java:

char c = '\u5A2C';
System.out.println(c);  // Output: 娬

JSON:

{"text": "\u5A2C"}  // Value: 娬

Python:

char = '\u5A2C'
print(char)  # Output: 娬

Perl:

my $char = "\x{5A2C}";
print $char;  # Output: 娬

PHP:

$char = "\x{5A2C}";
echo $char;  // Output: 娬

Ruby:

char = "\u{5A2C}"
puts char  # Output: 娬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23084;</p>  <!-- Display: 娬 -->

HTML Hexadecimal:

<p>HTML hex: &#x5A2C;</p>  <!-- Display: 娬 -->

URL Encoding:

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

Encodings

MD5:

eb588de6cb01702d87689d24abd19759

SHA1:

3e54bc3c128b631687bb251265d6e58eba7340cb

Base64:

5ais