Unicode Finder

"頎" U+980E(CJK UNIFIED IDEOGRAPH-980E)

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

Programming

C
\u980E
JavaScript
\u980E
Java
\u980E
Json
\u980E
Python
\u980E
Perl
\x{980E}
PHP
\x{980E}
Ruby
\u{980E}
Rust
\u{980E}
Go
\u980E

Web

CSS
\00980E
HtmlDecimal
頎
HtmlHexadecimal
頎
Url
%E9%A0%8E

Code

MD5
852d8f9810ad3116dba891b4357274aa
Sha1
3fc5d94ed073f8768e25287673d09e4754434058
Base64
6aCO

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u980E';
console.log(char);  // Output: 頎

Java:

char c = '\u980E';
System.out.println(c);  // Output: 頎

JSON:

{"text": "\u980E"}  // Value: 頎

Python:

char = '\u980E'
print(char)  # Output: 頎

Perl:

my $char = "\x{980E}";
print $char;  # Output: 頎

PHP:

$char = "\x{980E}";
echo $char;  // Output: 頎

Ruby:

char = "\u{980E}"
puts char  # Output: 頎

Rust:

let c = '\u{980E}';
println!("{}", c);  // Output: 頎

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00980E";  /* Display: 頎 */
}

HTML Decimal:

<p>HTML decimal: &#38926;</p>  <!-- Display: 頎 -->

HTML Hexadecimal:

<p>HTML hex: &#x980E;</p>  <!-- Display: 頎 -->

URL Encoding:

// 頎 URL encoding
https://unicodefinder.com/search.php?query=%E9%A0%8E

Encodings

MD5:

852d8f9810ad3116dba891b4357274aa

SHA1:

3fc5d94ed073f8768e25287673d09e4754434058

Base64:

6aCO