Unicode Finder

"颈" U+9888(CJK UNIFIED IDEOGRAPH-9888)

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

Programming

C
\u9888
JavaScript
\u9888
Java
\u9888
Json
\u9888
Python
\u9888
Perl
\x{9888}
PHP
\x{9888}
Ruby
\u{9888}
Rust
\u{9888}
Go
\u9888

Web

CSS
\009888
HtmlDecimal
颈
HtmlHexadecimal
颈
Url
%E9%A2%88

Code

MD5
9f7c82118f2dd72d0d339952645a13a2
Sha1
48d82d02aa9f809790986c54c6c949fd7776632e
Base64
6aKI

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9888';
console.log(char);  // Output: 颈

Java:

char c = '\u9888';
System.out.println(c);  // Output: 颈

JSON:

{"text": "\u9888"}  // Value: 颈

Python:

char = '\u9888'
print(char)  # Output: 颈

Perl:

my $char = "\x{9888}";
print $char;  # Output: 颈

PHP:

$char = "\x{9888}";
echo $char;  // Output: 颈

Ruby:

char = "\u{9888}"
puts char  # Output: 颈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009888";  /* Display: 颈 */
}

HTML Decimal:

<p>HTML decimal: &#39048;</p>  <!-- Display: 颈 -->

HTML Hexadecimal:

<p>HTML hex: &#x9888;</p>  <!-- Display: 颈 -->

URL Encoding:

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

Encodings

MD5:

9f7c82118f2dd72d0d339952645a13a2

SHA1:

48d82d02aa9f809790986c54c6c949fd7776632e

Base64:

6aKI