Unicode Finder

"髏" U+9ACF(CJK UNIFIED IDEOGRAPH-9ACF)

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

Programming

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

Web

CSS
\009ACF
HtmlDecimal
髏
HtmlHexadecimal
髏
Url
%E9%AB%8F

Code

MD5
7e7387ce76716c21837531414225ffee
Sha1
6b6789cdacedf440dbf14b2b54a7edd3532ff697
Base64
6auP

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9ACF';
console.log(char);  // Output: 髏

Java:

char c = '\u9ACF';
System.out.println(c);  // Output: 髏

JSON:

{"text": "\u9ACF"}  // Value: 髏

Python:

char = '\u9ACF'
print(char)  # Output: 髏

Perl:

my $char = "\x{9ACF}";
print $char;  # Output: 髏

PHP:

$char = "\x{9ACF}";
echo $char;  // Output: 髏

Ruby:

char = "\u{9ACF}"
puts char  # Output: 髏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39631;</p>  <!-- Display: 髏 -->

HTML Hexadecimal:

<p>HTML hex: &#x9ACF;</p>  <!-- Display: 髏 -->

URL Encoding:

// 髏 URL encoding
https://unicodefinder.com/search.php?query=%E9%AB%8F

Encodings

MD5:

7e7387ce76716c21837531414225ffee

SHA1:

6b6789cdacedf440dbf14b2b54a7edd3532ff697

Base64:

6auP