Unicode Finder

"颅" U+9885(CJK UNIFIED IDEOGRAPH-9885)

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

Programming

C
\u9885
JavaScript
\u9885
Java
\u9885
Json
\u9885
Python
\u9885
Perl
\x{9885}
PHP
\x{9885}
Ruby
\u{9885}
Rust
\u{9885}
Go
\u9885

Web

CSS
\009885
HtmlDecimal
颅
HtmlHexadecimal
颅
Url
%E9%A2%85

Code

MD5
7db4114552e51fd5eed70e2f24c6aacb
Sha1
200d43e4f27a9d92f0e5430313fc8849be4f5b9f
Base64
6aKF

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9885';
console.log(char);  // Output: 颅

Java:

char c = '\u9885';
System.out.println(c);  // Output: 颅

JSON:

{"text": "\u9885"}  // Value: 颅

Python:

char = '\u9885'
print(char)  # Output: 颅

Perl:

my $char = "\x{9885}";
print $char;  # Output: 颅

PHP:

$char = "\x{9885}";
echo $char;  // Output: 颅

Ruby:

char = "\u{9885}"
puts char  # Output: 颅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009885";  /* Display: 颅 */
}

HTML Decimal:

<p>HTML decimal: &#39045;</p>  <!-- Display: 颅 -->

HTML Hexadecimal:

<p>HTML hex: &#x9885;</p>  <!-- Display: 颅 -->

URL Encoding:

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

Encodings

MD5:

7db4114552e51fd5eed70e2f24c6aacb

SHA1:

200d43e4f27a9d92f0e5430313fc8849be4f5b9f

Base64:

6aKF