Unicode Finder

"鬣" U+9B23(CJK UNIFIED IDEOGRAPH-9B23)

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

Programming

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

Web

CSS
\009B23
HtmlDecimal
鬣
HtmlHexadecimal
鬣
Url
%E9%AC%A3

Code

MD5
1a9a6d585427bbd9c85bc6c49de365c5
Sha1
38a97347420ff78b7d9cd1f84b67a77f8b7ee113
Base64
6ayj

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9B23';
console.log(char);  // Output: 鬣

Java:

char c = '\u9B23';
System.out.println(c);  // Output: 鬣

JSON:

{"text": "\u9B23"}  // Value: 鬣

Python:

char = '\u9B23'
print(char)  # Output: 鬣

Perl:

my $char = "\x{9B23}";
print $char;  # Output: 鬣

PHP:

$char = "\x{9B23}";
echo $char;  // Output: 鬣

Ruby:

char = "\u{9B23}"
puts char  # Output: 鬣

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39715;</p>  <!-- Display: 鬣 -->

HTML Hexadecimal:

<p>HTML hex: &#x9B23;</p>  <!-- Display: 鬣 -->

URL Encoding:

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

Encodings

MD5:

1a9a6d585427bbd9c85bc6c49de365c5

SHA1:

38a97347420ff78b7d9cd1f84b67a77f8b7ee113

Base64:

6ayj