Unicode Finder

"顁" U+9841(CJK UNIFIED IDEOGRAPH-9841)

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

Programming

C
\u9841
JavaScript
\u9841
Java
\u9841
Json
\u9841
Python
\u9841
Perl
\x{9841}
PHP
\x{9841}
Ruby
\u{9841}
Rust
\u{9841}
Go
\u9841

Web

CSS
\009841
HtmlDecimal
顁
HtmlHexadecimal
顁
Url
%E9%A1%81

Code

MD5
9c09e8c65daf5f17bcd51e5548746c67
Sha1
306840cecb33e94647ef2fe4338b21a00bc87f58
Base64
6aGB

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9841';
console.log(char);  // Output: 顁

Java:

char c = '\u9841';
System.out.println(c);  // Output: 顁

JSON:

{"text": "\u9841"}  // Value: 顁

Python:

char = '\u9841'
print(char)  # Output: 顁

Perl:

my $char = "\x{9841}";
print $char;  # Output: 顁

PHP:

$char = "\x{9841}";
echo $char;  // Output: 顁

Ruby:

char = "\u{9841}"
puts char  # Output: 顁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009841";  /* Display: 顁 */
}

HTML Decimal:

<p>HTML decimal: &#38977;</p>  <!-- Display: 顁 -->

HTML Hexadecimal:

<p>HTML hex: &#x9841;</p>  <!-- Display: 顁 -->

URL Encoding:

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

Encodings

MD5:

9c09e8c65daf5f17bcd51e5548746c67

SHA1:

306840cecb33e94647ef2fe4338b21a00bc87f58

Base64:

6aGB