Unicode Finder

"髇" U+9AC7(CJK UNIFIED IDEOGRAPH-9AC7)

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

Programming

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

Web

CSS
\009AC7
HtmlDecimal
髇
HtmlHexadecimal
髇
Url
%E9%AB%87

Code

MD5
241ec3d176189bbbded61dbd830edf92
Sha1
de199b46050a0ff10e5a21cd9a350453ae560b89
Base64
6auH

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9AC7';
console.log(char);  // Output: 髇

Java:

char c = '\u9AC7';
System.out.println(c);  // Output: 髇

JSON:

{"text": "\u9AC7"}  // Value: 髇

Python:

char = '\u9AC7'
print(char)  # Output: 髇

Perl:

my $char = "\x{9AC7}";
print $char;  # Output: 髇

PHP:

$char = "\x{9AC7}";
echo $char;  // Output: 髇

Ruby:

char = "\u{9AC7}"
puts char  # Output: 髇

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39623;</p>  <!-- Display: 髇 -->

HTML Hexadecimal:

<p>HTML hex: &#x9AC7;</p>  <!-- Display: 髇 -->

URL Encoding:

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

Encodings

MD5:

241ec3d176189bbbded61dbd830edf92

SHA1:

de199b46050a0ff10e5a21cd9a350453ae560b89

Base64:

6auH