Unicode Finder

"髅" U+9AC5(CJK UNIFIED IDEOGRAPH-9AC5)

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

Programming

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

Web

CSS
\009AC5
HtmlDecimal
髅
HtmlHexadecimal
髅
Url
%E9%AB%85

Code

MD5
28cd9c3201aabff1a6059f63ed515b0d
Sha1
11390b418df40bf230877a0d8baa8d13e9502ca6
Base64
6auF

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9AC5';
console.log(char);  // Output: 髅

Java:

char c = '\u9AC5';
System.out.println(c);  // Output: 髅

JSON:

{"text": "\u9AC5"}  // Value: 髅

Python:

char = '\u9AC5'
print(char)  # Output: 髅

Perl:

my $char = "\x{9AC5}";
print $char;  # Output: 髅

PHP:

$char = "\x{9AC5}";
echo $char;  // Output: 髅

Ruby:

char = "\u{9AC5}"
puts char  # Output: 髅

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39621;</p>  <!-- Display: 髅 -->

HTML Hexadecimal:

<p>HTML hex: &#x9AC5;</p>  <!-- Display: 髅 -->

URL Encoding:

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

Encodings

MD5:

28cd9c3201aabff1a6059f63ed515b0d

SHA1:

11390b418df40bf230877a0d8baa8d13e9502ca6

Base64:

6auF