Unicode Finder

"顳" U+9873(CJK UNIFIED IDEOGRAPH-9873)

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

Programming

C
\u9873
JavaScript
\u9873
Java
\u9873
Json
\u9873
Python
\u9873
Perl
\x{9873}
PHP
\x{9873}
Ruby
\u{9873}
Rust
\u{9873}
Go
\u9873

Web

CSS
\009873
HtmlDecimal
顳
HtmlHexadecimal
顳
Url
%E9%A1%B3

Code

MD5
2c3af6cd4fc3bf643e18c2b826525bc9
Sha1
4431a368dbd65f16e2726688e5d0965ecec33de8
Base64
6aGz

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9873';
console.log(char);  // Output: 顳

Java:

char c = '\u9873';
System.out.println(c);  // Output: 顳

JSON:

{"text": "\u9873"}  // Value: 顳

Python:

char = '\u9873'
print(char)  # Output: 顳

Perl:

my $char = "\x{9873}";
print $char;  # Output: 顳

PHP:

$char = "\x{9873}";
echo $char;  // Output: 顳

Ruby:

char = "\u{9873}"
puts char  # Output: 顳

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009873";  /* Display: 顳 */
}

HTML Decimal:

<p>HTML decimal: &#39027;</p>  <!-- Display: 顳 -->

HTML Hexadecimal:

<p>HTML hex: &#x9873;</p>  <!-- Display: 顳 -->

URL Encoding:

// 顳 URL encoding
https://unicodefinder.com/search.php?query=%E9%A1%B3

Encodings

MD5:

2c3af6cd4fc3bf643e18c2b826525bc9

SHA1:

4431a368dbd65f16e2726688e5d0965ecec33de8

Base64:

6aGz