Unicode Finder

"娌" U+5A0C(CJK UNIFIED IDEOGRAPH-5A0C)

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

Programming

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

Web

CSS
\005A0C
HtmlDecimal
娌
HtmlHexadecimal
娌
Url
%E5%A8%8C

Code

MD5
a70f1dc40467508e19af7223234f5a7f
Sha1
753ed8f092fb1883ecfa417ada299b943e2889c9
Base64
5aiM

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5A0C';
console.log(char);  // Output: 娌

Java:

char c = '\u5A0C';
System.out.println(c);  // Output: 娌

JSON:

{"text": "\u5A0C"}  // Value: 娌

Python:

char = '\u5A0C'
print(char)  # Output: 娌

Perl:

my $char = "\x{5A0C}";
print $char;  # Output: 娌

PHP:

$char = "\x{5A0C}";
echo $char;  // Output: 娌

Ruby:

char = "\u{5A0C}"
puts char  # Output: 娌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23052;</p>  <!-- Display: 娌 -->

HTML Hexadecimal:

<p>HTML hex: &#x5A0C;</p>  <!-- Display: 娌 -->

URL Encoding:

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

Encodings

MD5:

a70f1dc40467508e19af7223234f5a7f

SHA1:

753ed8f092fb1883ecfa417ada299b943e2889c9

Base64:

5aiM