Unicode Finder

"顶" U+9876(CJK UNIFIED IDEOGRAPH-9876)

U+9876
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-9876

Programming

C
\u9876
JavaScript
\u9876
Java
\u9876
Json
\u9876
Python
\u9876
Perl
\x{9876}
PHP
\x{9876}
Ruby
\u{9876}
Rust
\u{9876}
Go
\u9876

Web

CSS
\009876
HtmlDecimal
顶
HtmlHexadecimal
顶
Url
%E9%A1%B6

Code

MD5
b797f4312cbd17572ede524ed8d696f1
Sha1
1ef89f288d4538dec3b780403e759af60d4f5a95
Base64
6aG2

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9876';
console.log(char);  // Output: 顶

Java:

char c = '\u9876';
System.out.println(c);  // Output: 顶

JSON:

{"text": "\u9876"}  // Value: 顶

Python:

char = '\u9876'
print(char)  # Output: 顶

Perl:

my $char = "\x{9876}";
print $char;  # Output: 顶

PHP:

$char = "\x{9876}";
echo $char;  // Output: 顶

Ruby:

char = "\u{9876}"
puts char  # Output: 顶

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009876";  /* Display: 顶 */
}

HTML Decimal:

<p>HTML decimal: &#39030;</p>  <!-- Display: 顶 -->

HTML Hexadecimal:

<p>HTML hex: &#x9876;</p>  <!-- Display: 顶 -->

URL Encoding:

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

Encodings

MD5:

b797f4312cbd17572ede524ed8d696f1

SHA1:

1ef89f288d4538dec3b780403e759af60d4f5a95

Base64:

6aG2