Unicode Finder

"髆" U+9AC6(CJK UNIFIED IDEOGRAPH-9AC6)

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

Programming

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

Web

CSS
\009AC6
HtmlDecimal
髆
HtmlHexadecimal
髆
Url
%E9%AB%86

Code

MD5
e4e35f7875545a30c818560081e47e2e
Sha1
bbd99bf17ad9c84adc766922664ef1b405f0f427
Base64
6auG

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9AC6';
console.log(char);  // Output: 髆

Java:

char c = '\u9AC6';
System.out.println(c);  // Output: 髆

JSON:

{"text": "\u9AC6"}  // Value: 髆

Python:

char = '\u9AC6'
print(char)  # Output: 髆

Perl:

my $char = "\x{9AC6}";
print $char;  # Output: 髆

PHP:

$char = "\x{9AC6}";
echo $char;  // Output: 髆

Ruby:

char = "\u{9AC6}"
puts char  # Output: 髆

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39622;</p>  <!-- Display: 髆 -->

HTML Hexadecimal:

<p>HTML hex: &#x9AC6;</p>  <!-- Display: 髆 -->

URL Encoding:

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

Encodings

MD5:

e4e35f7875545a30c818560081e47e2e

SHA1:

bbd99bf17ad9c84adc766922664ef1b405f0f427

Base64:

6auG