Unicode Finder

"髞" U+9ADE(CJK UNIFIED IDEOGRAPH-9ADE)

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

Programming

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

Web

CSS
\009ADE
HtmlDecimal
髞
HtmlHexadecimal
髞
Url
%E9%AB%9E

Code

MD5
f1e5fc40b7ec8b2e8896c4323ad4881b
Sha1
0b116dbe3f3cc75e37d3874a5bc67f944d8547c4
Base64
6aue

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9ADE';
console.log(char);  // Output: 髞

Java:

char c = '\u9ADE';
System.out.println(c);  // Output: 髞

JSON:

{"text": "\u9ADE"}  // Value: 髞

Python:

char = '\u9ADE'
print(char)  # Output: 髞

Perl:

my $char = "\x{9ADE}";
print $char;  # Output: 髞

PHP:

$char = "\x{9ADE}";
echo $char;  // Output: 髞

Ruby:

char = "\u{9ADE}"
puts char  # Output: 髞

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39646;</p>  <!-- Display: 髞 -->

HTML Hexadecimal:

<p>HTML hex: &#x9ADE;</p>  <!-- Display: 髞 -->

URL Encoding:

// 髞 URL encoding
https://unicodefinder.com/search.php?query=%E9%AB%9E

Encodings

MD5:

f1e5fc40b7ec8b2e8896c4323ad4881b

SHA1:

0b116dbe3f3cc75e37d3874a5bc67f944d8547c4

Base64:

6aue