Unicode Finder

"髉" U+9AC9(CJK UNIFIED IDEOGRAPH-9AC9)

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

Programming

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

Web

CSS
\009AC9
HtmlDecimal
髉
HtmlHexadecimal
髉
Url
%E9%AB%89

Code

MD5
974e498d0e1c73b884ee342bcc98b752
Sha1
09cb9c778c18cc1a0fe57fd74eac8e2b97ab66ff
Base64
6auJ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9AC9';
console.log(char);  // Output: 髉

Java:

char c = '\u9AC9';
System.out.println(c);  // Output: 髉

JSON:

{"text": "\u9AC9"}  // Value: 髉

Python:

char = '\u9AC9'
print(char)  # Output: 髉

Perl:

my $char = "\x{9AC9}";
print $char;  # Output: 髉

PHP:

$char = "\x{9AC9}";
echo $char;  // Output: 髉

Ruby:

char = "\u{9AC9}"
puts char  # Output: 髉

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39625;</p>  <!-- Display: 髉 -->

HTML Hexadecimal:

<p>HTML hex: &#x9AC9;</p>  <!-- Display: 髉 -->

URL Encoding:

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

Encodings

MD5:

974e498d0e1c73b884ee342bcc98b752

SHA1:

09cb9c778c18cc1a0fe57fd74eac8e2b97ab66ff

Base64:

6auJ