Unicode Finder

"髰" U+9AF0(CJK UNIFIED IDEOGRAPH-9AF0)

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

Programming

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

Web

CSS
\009AF0
HtmlDecimal
髰
HtmlHexadecimal
髰
Url
%E9%AB%B0

Code

MD5
a4615ba7a7efdd540725fa9f5a798377
Sha1
dddbc092b21304ca955b5e2c38fced0b59946064
Base64
6auw

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9AF0';
console.log(char);  // Output: 髰

Java:

char c = '\u9AF0';
System.out.println(c);  // Output: 髰

JSON:

{"text": "\u9AF0"}  // Value: 髰

Python:

char = '\u9AF0'
print(char)  # Output: 髰

Perl:

my $char = "\x{9AF0}";
print $char;  # Output: 髰

PHP:

$char = "\x{9AF0}";
echo $char;  // Output: 髰

Ruby:

char = "\u{9AF0}"
puts char  # Output: 髰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39664;</p>  <!-- Display: 髰 -->

HTML Hexadecimal:

<p>HTML hex: &#x9AF0;</p>  <!-- Display: 髰 -->

URL Encoding:

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

Encodings

MD5:

a4615ba7a7efdd540725fa9f5a798377

SHA1:

dddbc092b21304ca955b5e2c38fced0b59946064

Base64:

6auw