Unicode Finder

"頉" U+9809(CJK UNIFIED IDEOGRAPH-9809)

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

Programming

C
\u9809
JavaScript
\u9809
Java
\u9809
Json
\u9809
Python
\u9809
Perl
\x{9809}
PHP
\x{9809}
Ruby
\u{9809}
Rust
\u{9809}
Go
\u9809

Web

CSS
\009809
HtmlDecimal
頉
HtmlHexadecimal
頉
Url
%E9%A0%89

Code

MD5
aec1318e4a49b76b93afc4711f95ab54
Sha1
2ae1b5c458f0f9ff185843470c75bb1b3378265c
Base64
6aCJ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9809';
console.log(char);  // Output: 頉

Java:

char c = '\u9809';
System.out.println(c);  // Output: 頉

JSON:

{"text": "\u9809"}  // Value: 頉

Python:

char = '\u9809'
print(char)  # Output: 頉

Perl:

my $char = "\x{9809}";
print $char;  # Output: 頉

PHP:

$char = "\x{9809}";
echo $char;  // Output: 頉

Ruby:

char = "\u{9809}"
puts char  # Output: 頉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009809";  /* Display: 頉 */
}

HTML Decimal:

<p>HTML decimal: &#38921;</p>  <!-- Display: 頉 -->

HTML Hexadecimal:

<p>HTML hex: &#x9809;</p>  <!-- Display: 頉 -->

URL Encoding:

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

Encodings

MD5:

aec1318e4a49b76b93afc4711f95ab54

SHA1:

2ae1b5c458f0f9ff185843470c75bb1b3378265c

Base64:

6aCJ