Unicode Finder

"顉" U+9849(CJK UNIFIED IDEOGRAPH-9849)

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

Programming

C
\u9849
JavaScript
\u9849
Java
\u9849
Json
\u9849
Python
\u9849
Perl
\x{9849}
PHP
\x{9849}
Ruby
\u{9849}
Rust
\u{9849}
Go
\u9849

Web

CSS
\009849
HtmlDecimal
顉
HtmlHexadecimal
顉
Url
%E9%A1%89

Code

MD5
317bf9b27ce4399dddf062cd5fb096e8
Sha1
0543247247bf4976bea7e5ff31093299c21a8ca1
Base64
6aGJ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9849';
console.log(char);  // Output: 顉

Java:

char c = '\u9849';
System.out.println(c);  // Output: 顉

JSON:

{"text": "\u9849"}  // Value: 顉

Python:

char = '\u9849'
print(char)  # Output: 顉

Perl:

my $char = "\x{9849}";
print $char;  # Output: 顉

PHP:

$char = "\x{9849}";
echo $char;  // Output: 顉

Ruby:

char = "\u{9849}"
puts char  # Output: 顉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009849";  /* Display: 顉 */
}

HTML Decimal:

<p>HTML decimal: &#38985;</p>  <!-- Display: 顉 -->

HTML Hexadecimal:

<p>HTML hex: &#x9849;</p>  <!-- Display: 顉 -->

URL Encoding:

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

Encodings

MD5:

317bf9b27ce4399dddf062cd5fb096e8

SHA1:

0543247247bf4976bea7e5ff31093299c21a8ca1

Base64:

6aGJ