Unicode Finder

"颔" U+9894(CJK UNIFIED IDEOGRAPH-9894)

U+9894
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-9894

Programming

C
\u9894
JavaScript
\u9894
Java
\u9894
Json
\u9894
Python
\u9894
Perl
\x{9894}
PHP
\x{9894}
Ruby
\u{9894}
Rust
\u{9894}
Go
\u9894

Web

CSS
\009894
HtmlDecimal
颔
HtmlHexadecimal
颔
Url
%E9%A2%94

Code

MD5
56362e177d6c4cee19c423dfb19de4f2
Sha1
982720486f9d1c15f20c10629630b83161d6291b
Base64
6aKU

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9894';
console.log(char);  // Output: 颔

Java:

char c = '\u9894';
System.out.println(c);  // Output: 颔

JSON:

{"text": "\u9894"}  // Value: 颔

Python:

char = '\u9894'
print(char)  # Output: 颔

Perl:

my $char = "\x{9894}";
print $char;  # Output: 颔

PHP:

$char = "\x{9894}";
echo $char;  // Output: 颔

Ruby:

char = "\u{9894}"
puts char  # Output: 颔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009894";  /* Display: 颔 */
}

HTML Decimal:

<p>HTML decimal: &#39060;</p>  <!-- Display: 颔 -->

HTML Hexadecimal:

<p>HTML hex: &#x9894;</p>  <!-- Display: 颔 -->

URL Encoding:

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

Encodings

MD5:

56362e177d6c4cee19c423dfb19de4f2

SHA1:

982720486f9d1c15f20c10629630b83161d6291b

Base64:

6aKU