Unicode Finder

"頄" U+9804(CJK UNIFIED IDEOGRAPH-9804)

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

Programming

C
\u9804
JavaScript
\u9804
Java
\u9804
Json
\u9804
Python
\u9804
Perl
\x{9804}
PHP
\x{9804}
Ruby
\u{9804}
Rust
\u{9804}
Go
\u9804

Web

CSS
\009804
HtmlDecimal
頄
HtmlHexadecimal
頄
Url
%E9%A0%84

Code

MD5
aeb313e486fd3d9eddd670d25a6dae07
Sha1
cbba213db801b180c6ea7871ba28ac29a16aba7c
Base64
6aCE

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9804';
console.log(char);  // Output: 頄

Java:

char c = '\u9804';
System.out.println(c);  // Output: 頄

JSON:

{"text": "\u9804"}  // Value: 頄

Python:

char = '\u9804'
print(char)  # Output: 頄

Perl:

my $char = "\x{9804}";
print $char;  # Output: 頄

PHP:

$char = "\x{9804}";
echo $char;  // Output: 頄

Ruby:

char = "\u{9804}"
puts char  # Output: 頄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009804";  /* Display: 頄 */
}

HTML Decimal:

<p>HTML decimal: &#38916;</p>  <!-- Display: 頄 -->

HTML Hexadecimal:

<p>HTML hex: &#x9804;</p>  <!-- Display: 頄 -->

URL Encoding:

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

Encodings

MD5:

aeb313e486fd3d9eddd670d25a6dae07

SHA1:

cbba213db801b180c6ea7871ba28ac29a16aba7c

Base64:

6aCE