Unicode Finder

"颉" U+9889(CJK UNIFIED IDEOGRAPH-9889)

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

Programming

C
\u9889
JavaScript
\u9889
Java
\u9889
Json
\u9889
Python
\u9889
Perl
\x{9889}
PHP
\x{9889}
Ruby
\u{9889}
Rust
\u{9889}
Go
\u9889

Web

CSS
\009889
HtmlDecimal
颉
HtmlHexadecimal
颉
Url
%E9%A2%89

Code

MD5
b0b3ad4cfff35595f785fe44713cb309
Sha1
8e1dfc54b14feb0c8b49300c9bc6da8235e1408c
Base64
6aKJ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9889';
console.log(char);  // Output: 颉

Java:

char c = '\u9889';
System.out.println(c);  // Output: 颉

JSON:

{"text": "\u9889"}  // Value: 颉

Python:

char = '\u9889'
print(char)  # Output: 颉

Perl:

my $char = "\x{9889}";
print $char;  # Output: 颉

PHP:

$char = "\x{9889}";
echo $char;  // Output: 颉

Ruby:

char = "\u{9889}"
puts char  # Output: 颉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009889";  /* Display: 颉 */
}

HTML Decimal:

<p>HTML decimal: &#39049;</p>  <!-- Display: 颉 -->

HTML Hexadecimal:

<p>HTML hex: &#x9889;</p>  <!-- Display: 颉 -->

URL Encoding:

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

Encodings

MD5:

b0b3ad4cfff35595f785fe44713cb309

SHA1:

8e1dfc54b14feb0c8b49300c9bc6da8235e1408c

Base64:

6aKJ