Unicode Finder

"髌" U+9ACC(CJK UNIFIED IDEOGRAPH-9ACC)

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

Programming

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

Web

CSS
\009ACC
HtmlDecimal
髌
HtmlHexadecimal
髌
Url
%E9%AB%8C

Code

MD5
95f202e0786453c667745d450668c58b
Sha1
1407574ea33068094500ec1734c7faeaf840f272
Base64
6auM

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9ACC';
console.log(char);  // Output: 髌

Java:

char c = '\u9ACC';
System.out.println(c);  // Output: 髌

JSON:

{"text": "\u9ACC"}  // Value: 髌

Python:

char = '\u9ACC'
print(char)  # Output: 髌

Perl:

my $char = "\x{9ACC}";
print $char;  # Output: 髌

PHP:

$char = "\x{9ACC}";
echo $char;  // Output: 髌

Ruby:

char = "\u{9ACC}"
puts char  # Output: 髌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39628;</p>  <!-- Display: 髌 -->

HTML Hexadecimal:

<p>HTML hex: &#x9ACC;</p>  <!-- Display: 髌 -->

URL Encoding:

// 髌 URL encoding
https://unicodefinder.com/search.php?query=%E9%AB%8C

Encodings

MD5:

95f202e0786453c667745d450668c58b

SHA1:

1407574ea33068094500ec1734c7faeaf840f272

Base64:

6auM