Unicode Finder

"頂" U+9802(CJK UNIFIED IDEOGRAPH-9802)

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

Programming

C
\u9802
JavaScript
\u9802
Java
\u9802
Json
\u9802
Python
\u9802
Perl
\x{9802}
PHP
\x{9802}
Ruby
\u{9802}
Rust
\u{9802}
Go
\u9802

Web

CSS
\009802
HtmlDecimal
頂
HtmlHexadecimal
頂
Url
%E9%A0%82

Code

MD5
ca5ddec81da0272b2e0e7b02c75a64cc
Sha1
09fd153079dbe1e12fbff840c653f62734022bb9
Base64
6aCC

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9802';
console.log(char);  // Output: 頂

Java:

char c = '\u9802';
System.out.println(c);  // Output: 頂

JSON:

{"text": "\u9802"}  // Value: 頂

Python:

char = '\u9802'
print(char)  # Output: 頂

Perl:

my $char = "\x{9802}";
print $char;  # Output: 頂

PHP:

$char = "\x{9802}";
echo $char;  // Output: 頂

Ruby:

char = "\u{9802}"
puts char  # Output: 頂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009802";  /* Display: 頂 */
}

HTML Decimal:

<p>HTML decimal: &#38914;</p>  <!-- Display: 頂 -->

HTML Hexadecimal:

<p>HTML hex: &#x9802;</p>  <!-- Display: 頂 -->

URL Encoding:

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

Encodings

MD5:

ca5ddec81da0272b2e0e7b02c75a64cc

SHA1:

09fd153079dbe1e12fbff840c653f62734022bb9

Base64:

6aCC