Unicode Finder

"頔" U+9814(CJK UNIFIED IDEOGRAPH-9814)

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

Programming

C
\u9814
JavaScript
\u9814
Java
\u9814
Json
\u9814
Python
\u9814
Perl
\x{9814}
PHP
\x{9814}
Ruby
\u{9814}
Rust
\u{9814}
Go
\u9814

Web

CSS
\009814
HtmlDecimal
頔
HtmlHexadecimal
頔
Url
%E9%A0%94

Code

MD5
708f7b811b735e33181585e94d153c5f
Sha1
7c0b3686f545240bae7823feda3cd28b3ed200f3
Base64
6aCU

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9814';
console.log(char);  // Output: 頔

Java:

char c = '\u9814';
System.out.println(c);  // Output: 頔

JSON:

{"text": "\u9814"}  // Value: 頔

Python:

char = '\u9814'
print(char)  # Output: 頔

Perl:

my $char = "\x{9814}";
print $char;  # Output: 頔

PHP:

$char = "\x{9814}";
echo $char;  // Output: 頔

Ruby:

char = "\u{9814}"
puts char  # Output: 頔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009814";  /* Display: 頔 */
}

HTML Decimal:

<p>HTML decimal: &#38932;</p>  <!-- Display: 頔 -->

HTML Hexadecimal:

<p>HTML hex: &#x9814;</p>  <!-- Display: 頔 -->

URL Encoding:

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

Encodings

MD5:

708f7b811b735e33181585e94d153c5f

SHA1:

7c0b3686f545240bae7823feda3cd28b3ed200f3

Base64:

6aCU