Unicode Finder

"髡" U+9AE1(CJK UNIFIED IDEOGRAPH-9AE1)

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

Programming

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

Web

CSS
\009AE1
HtmlDecimal
髡
HtmlHexadecimal
髡
Url
%E9%AB%A1

Code

MD5
44d08c84b29ed82ceb43ef92f72ae820
Sha1
7a72858b906a0400e8700b9732a36525a3383f37
Base64
6auh

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9AE1';
console.log(char);  // Output: 髡

Java:

char c = '\u9AE1';
System.out.println(c);  // Output: 髡

JSON:

{"text": "\u9AE1"}  // Value: 髡

Python:

char = '\u9AE1'
print(char)  # Output: 髡

Perl:

my $char = "\x{9AE1}";
print $char;  # Output: 髡

PHP:

$char = "\x{9AE1}";
echo $char;  // Output: 髡

Ruby:

char = "\u{9AE1}"
puts char  # Output: 髡

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39649;</p>  <!-- Display: 髡 -->

HTML Hexadecimal:

<p>HTML hex: &#x9AE1;</p>  <!-- Display: 髡 -->

URL Encoding:

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

Encodings

MD5:

44d08c84b29ed82ceb43ef92f72ae820

SHA1:

7a72858b906a0400e8700b9732a36525a3383f37

Base64:

6auh