Unicode Finder

"髝" U+9ADD(CJK UNIFIED IDEOGRAPH-9ADD)

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

Programming

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

Web

CSS
\009ADD
HtmlDecimal
髝
HtmlHexadecimal
髝
Url
%E9%AB%9D

Code

MD5
76ca2f710e09b973f848517acc700c38
Sha1
110c2ba34d60832c3f994aa5cf093b59b8e118de
Base64
6aud

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9ADD';
console.log(char);  // Output: 髝

Java:

char c = '\u9ADD';
System.out.println(c);  // Output: 髝

JSON:

{"text": "\u9ADD"}  // Value: 髝

Python:

char = '\u9ADD'
print(char)  # Output: 髝

Perl:

my $char = "\x{9ADD}";
print $char;  # Output: 髝

PHP:

$char = "\x{9ADD}";
echo $char;  // Output: 髝

Ruby:

char = "\u{9ADD}"
puts char  # Output: 髝

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39645;</p>  <!-- Display: 髝 -->

HTML Hexadecimal:

<p>HTML hex: &#x9ADD;</p>  <!-- Display: 髝 -->

URL Encoding:

// 髝 URL encoding
https://unicodefinder.com/search.php?query=%E9%AB%9D

Encodings

MD5:

76ca2f710e09b973f848517acc700c38

SHA1:

110c2ba34d60832c3f994aa5cf093b59b8e118de

Base64:

6aud