Unicode Finder

"髟" U+9ADF(CJK UNIFIED IDEOGRAPH-9ADF)

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

Programming

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

Web

CSS
\009ADF
HtmlDecimal
髟
HtmlHexadecimal
髟
Url
%E9%AB%9F

Code

MD5
73f6b4bf5f3157323720e8eb48b78eb1
Sha1
61fe304b0ddb33624245d9f52563d6cc4bbcf8cd
Base64
6auf

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9ADF';
console.log(char);  // Output: 髟

Java:

char c = '\u9ADF';
System.out.println(c);  // Output: 髟

JSON:

{"text": "\u9ADF"}  // Value: 髟

Python:

char = '\u9ADF'
print(char)  # Output: 髟

Perl:

my $char = "\x{9ADF}";
print $char;  # Output: 髟

PHP:

$char = "\x{9ADF}";
echo $char;  // Output: 髟

Ruby:

char = "\u{9ADF}"
puts char  # Output: 髟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39647;</p>  <!-- Display: 髟 -->

HTML Hexadecimal:

<p>HTML hex: &#x9ADF;</p>  <!-- Display: 髟 -->

URL Encoding:

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

Encodings

MD5:

73f6b4bf5f3157323720e8eb48b78eb1

SHA1:

61fe304b0ddb33624245d9f52563d6cc4bbcf8cd

Base64:

6auf