Unicode Finder

"崑" U+5D11(CJK UNIFIED IDEOGRAPH-5D11)

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

Programming

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

Web

CSS
\005D11
HtmlDecimal
崑
HtmlHexadecimal
崑
Url
%E5%B4%91

Code

MD5
df90f704e7be92e0b38ffab5f484c882
Sha1
3e89ca38d41053a0918dfef9d5b427fb8ac3ca57
Base64
5bSR

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5D11';
console.log(char);  // Output: 崑

Java:

char c = '\u5D11';
System.out.println(c);  // Output: 崑

JSON:

{"text": "\u5D11"}  // Value: 崑

Python:

char = '\u5D11'
print(char)  # Output: 崑

Perl:

my $char = "\x{5D11}";
print $char;  # Output: 崑

PHP:

$char = "\x{5D11}";
echo $char;  // Output: 崑

Ruby:

char = "\u{5D11}"
puts char  # Output: 崑

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23825;</p>  <!-- Display: 崑 -->

HTML Hexadecimal:

<p>HTML hex: &#x5D11;</p>  <!-- Display: 崑 -->

URL Encoding:

// 崑 URL encoding
https://unicodefinder.com/search.php?query=%E5%B4%91

Encodings

MD5:

df90f704e7be92e0b38ffab5f484c882

SHA1:

3e89ca38d41053a0918dfef9d5b427fb8ac3ca57

Base64:

5bSR