Unicode Finder

"嵫" U+5D6B(CJK UNIFIED IDEOGRAPH-5D6B)

U+5D6B
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-5D6B

Programming

C
\u5D6B
JavaScript
\u5D6B
Java
\u5D6B
Json
\u5D6B
Python
\u5D6B
Perl
\x{5D6B}
PHP
\x{5D6B}
Ruby
\u{5D6B}
Rust
\u{5D6B}
Go
\u5D6B

Web

CSS
\005D6B
HtmlDecimal
嵫
HtmlHexadecimal
嵫
Url
%E5%B5%AB

Code

MD5
0ec91e0f1d9dd14936ffef9727027ff0
Sha1
2e76b1ef62fa891111bb0c917a654eb874d06098
Base64
5bWr

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5D6B';
console.log(char);  // Output: 嵫

Java:

char c = '\u5D6B';
System.out.println(c);  // Output: 嵫

JSON:

{"text": "\u5D6B"}  // Value: 嵫

Python:

char = '\u5D6B'
print(char)  # Output: 嵫

Perl:

my $char = "\x{5D6B}";
print $char;  # Output: 嵫

PHP:

$char = "\x{5D6B}";
echo $char;  // Output: 嵫

Ruby:

char = "\u{5D6B}"
puts char  # Output: 嵫

Rust:

let c = '\u{5D6B}';
println!("{}", c);  // Output: 嵫

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005D6B";  /* Display: 嵫 */
}

HTML Decimal:

<p>HTML decimal: &#23915;</p>  <!-- Display: 嵫 -->

HTML Hexadecimal:

<p>HTML hex: &#x5D6B;</p>  <!-- Display: 嵫 -->

URL Encoding:

// 嵫 URL encoding
https://unicodefinder.com/search.php?query=%E5%B5%AB

Encodings

MD5:

0ec91e0f1d9dd14936ffef9727027ff0

SHA1:

2e76b1ef62fa891111bb0c917a654eb874d06098

Base64:

5bWr