Unicode Finder

"鬟" U+9B1F(CJK UNIFIED IDEOGRAPH-9B1F)

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

Programming

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

Web

CSS
\009B1F
HtmlDecimal
鬟
HtmlHexadecimal
鬟
Url
%E9%AC%9F

Code

MD5
5d90f89150f04d440a67e96394bc8189
Sha1
2b120b42730cccb027d807de919af0f64f35fd0d
Base64
6ayf

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9B1F';
console.log(char);  // Output: 鬟

Java:

char c = '\u9B1F';
System.out.println(c);  // Output: 鬟

JSON:

{"text": "\u9B1F"}  // Value: 鬟

Python:

char = '\u9B1F'
print(char)  # Output: 鬟

Perl:

my $char = "\x{9B1F}";
print $char;  # Output: 鬟

PHP:

$char = "\x{9B1F}";
echo $char;  // Output: 鬟

Ruby:

char = "\u{9B1F}"
puts char  # Output: 鬟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39711;</p>  <!-- Display: 鬟 -->

HTML Hexadecimal:

<p>HTML hex: &#x9B1F;</p>  <!-- Display: 鬟 -->

URL Encoding:

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

Encodings

MD5:

5d90f89150f04d440a67e96394bc8189

SHA1:

2b120b42730cccb027d807de919af0f64f35fd0d

Base64:

6ayf