Unicode Finder

"頲" U+9832(CJK UNIFIED IDEOGRAPH-9832)

U+9832
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-9832

Programming

C
\u9832
JavaScript
\u9832
Java
\u9832
Json
\u9832
Python
\u9832
Perl
\x{9832}
PHP
\x{9832}
Ruby
\u{9832}
Rust
\u{9832}
Go
\u9832

Web

CSS
\009832
HtmlDecimal
頲
HtmlHexadecimal
頲
Url
%E9%A0%B2

Code

MD5
0e96c96a561f58f97697f353e34bdde7
Sha1
9a53bd6e85c4e40e238145b922937cb4619b6eb2
Base64
6aCy

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9832';
console.log(char);  // Output: 頲

Java:

char c = '\u9832';
System.out.println(c);  // Output: 頲

JSON:

{"text": "\u9832"}  // Value: 頲

Python:

char = '\u9832'
print(char)  # Output: 頲

Perl:

my $char = "\x{9832}";
print $char;  # Output: 頲

PHP:

$char = "\x{9832}";
echo $char;  // Output: 頲

Ruby:

char = "\u{9832}"
puts char  # Output: 頲

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009832";  /* Display: 頲 */
}

HTML Decimal:

<p>HTML decimal: &#38962;</p>  <!-- Display: 頲 -->

HTML Hexadecimal:

<p>HTML hex: &#x9832;</p>  <!-- Display: 頲 -->

URL Encoding:

// 頲 URL encoding
https://unicodefinder.com/search.php?query=%E9%A0%B2

Encodings

MD5:

0e96c96a561f58f97697f353e34bdde7

SHA1:

9a53bd6e85c4e40e238145b922937cb4619b6eb2

Base64:

6aCy