Unicode Finder

"頇" U+9807(CJK UNIFIED IDEOGRAPH-9807)

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

Programming

C
\u9807
JavaScript
\u9807
Java
\u9807
Json
\u9807
Python
\u9807
Perl
\x{9807}
PHP
\x{9807}
Ruby
\u{9807}
Rust
\u{9807}
Go
\u9807

Web

CSS
\009807
HtmlDecimal
頇
HtmlHexadecimal
頇
Url
%E9%A0%87

Code

MD5
0f162d0d39f9dd964e3fbe1809be6d69
Sha1
b59761bf46ae3f6bd370b5051ab06fe598fa49f1
Base64
6aCH

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9807';
console.log(char);  // Output: 頇

Java:

char c = '\u9807';
System.out.println(c);  // Output: 頇

JSON:

{"text": "\u9807"}  // Value: 頇

Python:

char = '\u9807'
print(char)  # Output: 頇

Perl:

my $char = "\x{9807}";
print $char;  # Output: 頇

PHP:

$char = "\x{9807}";
echo $char;  // Output: 頇

Ruby:

char = "\u{9807}"
puts char  # Output: 頇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009807";  /* Display: 頇 */
}

HTML Decimal:

<p>HTML decimal: &#38919;</p>  <!-- Display: 頇 -->

HTML Hexadecimal:

<p>HTML hex: &#x9807;</p>  <!-- Display: 頇 -->

URL Encoding:

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

Encodings

MD5:

0f162d0d39f9dd964e3fbe1809be6d69

SHA1:

b59761bf46ae3f6bd370b5051ab06fe598fa49f1

Base64:

6aCH