Unicode Finder

"頶" U+9836(CJK UNIFIED IDEOGRAPH-9836)

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

Programming

C
\u9836
JavaScript
\u9836
Java
\u9836
Json
\u9836
Python
\u9836
Perl
\x{9836}
PHP
\x{9836}
Ruby
\u{9836}
Rust
\u{9836}
Go
\u9836

Web

CSS
\009836
HtmlDecimal
頶
HtmlHexadecimal
頶
Url
%E9%A0%B6

Code

MD5
d5f30c8413350e0b8ebbc91823f1cc7e
Sha1
8d9d169ff4be1bd176667577eedbb911b8d0f7c0
Base64
6aC2

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9836';
console.log(char);  // Output: 頶

Java:

char c = '\u9836';
System.out.println(c);  // Output: 頶

JSON:

{"text": "\u9836"}  // Value: 頶

Python:

char = '\u9836'
print(char)  # Output: 頶

Perl:

my $char = "\x{9836}";
print $char;  # Output: 頶

PHP:

$char = "\x{9836}";
echo $char;  // Output: 頶

Ruby:

char = "\u{9836}"
puts char  # Output: 頶

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009836";  /* Display: 頶 */
}

HTML Decimal:

<p>HTML decimal: &#38966;</p>  <!-- Display: 頶 -->

HTML Hexadecimal:

<p>HTML hex: &#x9836;</p>  <!-- Display: 頶 -->

URL Encoding:

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

Encodings

MD5:

d5f30c8413350e0b8ebbc91823f1cc7e

SHA1:

8d9d169ff4be1bd176667577eedbb911b8d0f7c0

Base64:

6aC2