Unicode Finder

"髑" U+9AD1(CJK UNIFIED IDEOGRAPH-9AD1)

U+9AD1
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-9AD1

Programming

C
\u9AD1
JavaScript
\u9AD1
Java
\u9AD1
Json
\u9AD1
Python
\u9AD1
Perl
\x{9AD1}
PHP
\x{9AD1}
Ruby
\u{9AD1}
Rust
\u{9AD1}
Go
\u9AD1

Web

CSS
\009AD1
HtmlDecimal
髑
HtmlHexadecimal
髑
Url
%E9%AB%91

Code

MD5
e742ee8eb6d7dafaeb4b2e01cad57240
Sha1
28f35a28b00656ed8f0d284a244bf9b0d879e42d
Base64
6auR

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9AD1';
console.log(char);  // Output: 髑

Java:

char c = '\u9AD1';
System.out.println(c);  // Output: 髑

JSON:

{"text": "\u9AD1"}  // Value: 髑

Python:

char = '\u9AD1'
print(char)  # Output: 髑

Perl:

my $char = "\x{9AD1}";
print $char;  # Output: 髑

PHP:

$char = "\x{9AD1}";
echo $char;  // Output: 髑

Ruby:

char = "\u{9AD1}"
puts char  # Output: 髑

Rust:

let c = '\u{9AD1}';
println!("{}", c);  // Output: 髑

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009AD1";  /* Display: 髑 */
}

HTML Decimal:

<p>HTML decimal: &#39633;</p>  <!-- Display: 髑 -->

HTML Hexadecimal:

<p>HTML hex: &#x9AD1;</p>  <!-- Display: 髑 -->

URL Encoding:

// 髑 URL encoding
https://unicodefinder.com/search.php?query=%E9%AB%91

Encodings

MD5:

e742ee8eb6d7dafaeb4b2e01cad57240

SHA1:

28f35a28b00656ed8f0d284a244bf9b0d879e42d

Base64:

6auR