Unicode Finder

"髬" U+9AEC(CJK UNIFIED IDEOGRAPH-9AEC)

U+9AEC
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-9AEC

Programming

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

Web

CSS
\009AEC
HtmlDecimal
髬
HtmlHexadecimal
髬
Url
%E9%AB%AC

Code

MD5
af96769eb39fd1243a1917dccfef8edc
Sha1
5dec6681930c42f5323a86e0372b31ecd373a30b
Base64
6aus

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9AEC';
console.log(char);  // Output: 髬

Java:

char c = '\u9AEC';
System.out.println(c);  // Output: 髬

JSON:

{"text": "\u9AEC"}  // Value: 髬

Python:

char = '\u9AEC'
print(char)  # Output: 髬

Perl:

my $char = "\x{9AEC}";
print $char;  # Output: 髬

PHP:

$char = "\x{9AEC}";
echo $char;  // Output: 髬

Ruby:

char = "\u{9AEC}"
puts char  # Output: 髬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39660;</p>  <!-- Display: 髬 -->

HTML Hexadecimal:

<p>HTML hex: &#x9AEC;</p>  <!-- Display: 髬 -->

URL Encoding:

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

Encodings

MD5:

af96769eb39fd1243a1917dccfef8edc

SHA1:

5dec6681930c42f5323a86e0372b31ecd373a30b

Base64:

6aus