Unicode Finder

"顙" U+9859(CJK UNIFIED IDEOGRAPH-9859)

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

Programming

C
\u9859
JavaScript
\u9859
Java
\u9859
Json
\u9859
Python
\u9859
Perl
\x{9859}
PHP
\x{9859}
Ruby
\u{9859}
Rust
\u{9859}
Go
\u9859

Web

CSS
\009859
HtmlDecimal
顙
HtmlHexadecimal
顙
Url
%E9%A1%99

Code

MD5
1a51686f7d525805ae5b0b136a82fdc0
Sha1
e30c6d8a2d838456f51c132b652d21ee4f9370b9
Base64
6aGZ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9859';
console.log(char);  // Output: 顙

Java:

char c = '\u9859';
System.out.println(c);  // Output: 顙

JSON:

{"text": "\u9859"}  // Value: 顙

Python:

char = '\u9859'
print(char)  # Output: 顙

Perl:

my $char = "\x{9859}";
print $char;  # Output: 顙

PHP:

$char = "\x{9859}";
echo $char;  // Output: 顙

Ruby:

char = "\u{9859}"
puts char  # Output: 顙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009859";  /* Display: 顙 */
}

HTML Decimal:

<p>HTML decimal: &#39001;</p>  <!-- Display: 顙 -->

HTML Hexadecimal:

<p>HTML hex: &#x9859;</p>  <!-- Display: 顙 -->

URL Encoding:

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

Encodings

MD5:

1a51686f7d525805ae5b0b136a82fdc0

SHA1:

e30c6d8a2d838456f51c132b652d21ee4f9370b9

Base64:

6aGZ