Unicode Finder

"鬮" U+9B2E(CJK UNIFIED IDEOGRAPH-9B2E)

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

Programming

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

Web

CSS
\009B2E
HtmlDecimal
鬮
HtmlHexadecimal
鬮
Url
%E9%AC%AE

Code

MD5
dd571bbb8a2e49e21413642fb555f3af
Sha1
9cb0fc63deaeed8e298194315de0e9f7b7a73ebb
Base64
6ayu

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9B2E';
console.log(char);  // Output: 鬮

Java:

char c = '\u9B2E';
System.out.println(c);  // Output: 鬮

JSON:

{"text": "\u9B2E"}  // Value: 鬮

Python:

char = '\u9B2E'
print(char)  # Output: 鬮

Perl:

my $char = "\x{9B2E}";
print $char;  # Output: 鬮

PHP:

$char = "\x{9B2E}";
echo $char;  // Output: 鬮

Ruby:

char = "\u{9B2E}"
puts char  # Output: 鬮

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39726;</p>  <!-- Display: 鬮 -->

HTML Hexadecimal:

<p>HTML hex: &#x9B2E;</p>  <!-- Display: 鬮 -->

URL Encoding:

// 鬮 URL encoding
https://unicodefinder.com/search.php?query=%E9%AC%AE

Encodings

MD5:

dd571bbb8a2e49e21413642fb555f3af

SHA1:

9cb0fc63deaeed8e298194315de0e9f7b7a73ebb

Base64:

6ayu