Unicode Finder

"颒" U+9892(CJK UNIFIED IDEOGRAPH-9892)

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

Programming

C
\u9892
JavaScript
\u9892
Java
\u9892
Json
\u9892
Python
\u9892
Perl
\x{9892}
PHP
\x{9892}
Ruby
\u{9892}
Rust
\u{9892}
Go
\u9892

Web

CSS
\009892
HtmlDecimal
颒
HtmlHexadecimal
颒
Url
%E9%A2%92

Code

MD5
c21978db8e88f146ae9a261f3b30c3a2
Sha1
a394281dadd59935f59fd181ef95e2660df91f81
Base64
6aKS

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9892';
console.log(char);  // Output: 颒

Java:

char c = '\u9892';
System.out.println(c);  // Output: 颒

JSON:

{"text": "\u9892"}  // Value: 颒

Python:

char = '\u9892'
print(char)  # Output: 颒

Perl:

my $char = "\x{9892}";
print $char;  # Output: 颒

PHP:

$char = "\x{9892}";
echo $char;  // Output: 颒

Ruby:

char = "\u{9892}"
puts char  # Output: 颒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009892";  /* Display: 颒 */
}

HTML Decimal:

<p>HTML decimal: &#39058;</p>  <!-- Display: 颒 -->

HTML Hexadecimal:

<p>HTML hex: &#x9892;</p>  <!-- Display: 颒 -->

URL Encoding:

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

Encodings

MD5:

c21978db8e88f146ae9a261f3b30c3a2

SHA1:

a394281dadd59935f59fd181ef95e2660df91f81

Base64:

6aKS