Unicode Finder

"髱" U+9AF1(CJK UNIFIED IDEOGRAPH-9AF1)

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

Programming

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

Web

CSS
\009AF1
HtmlDecimal
髱
HtmlHexadecimal
髱
Url
%E9%AB%B1

Code

MD5
7ed099df099f62d97d858dcce5a9e411
Sha1
a1f5e7ded4ff4091574ecee835e23718ebfd6caf
Base64
6aux

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9AF1';
console.log(char);  // Output: 髱

Java:

char c = '\u9AF1';
System.out.println(c);  // Output: 髱

JSON:

{"text": "\u9AF1"}  // Value: 髱

Python:

char = '\u9AF1'
print(char)  # Output: 髱

Perl:

my $char = "\x{9AF1}";
print $char;  # Output: 髱

PHP:

$char = "\x{9AF1}";
echo $char;  // Output: 髱

Ruby:

char = "\u{9AF1}"
puts char  # Output: 髱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39665;</p>  <!-- Display: 髱 -->

HTML Hexadecimal:

<p>HTML hex: &#x9AF1;</p>  <!-- Display: 髱 -->

URL Encoding:

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

Encodings

MD5:

7ed099df099f62d97d858dcce5a9e411

SHA1:

a1f5e7ded4ff4091574ecee835e23718ebfd6caf

Base64:

6aux