Unicode Finder

"崊" U+5D0A(CJK UNIFIED IDEOGRAPH-5D0A)

U+5D0A
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-5D0A

Programming

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

Web

CSS
\005D0A
HtmlDecimal
崊
HtmlHexadecimal
崊
Url
%E5%B4%8A

Code

MD5
c2fb8e80dc4f34ca9a87f83cf911ecdc
Sha1
2d3598b588d3c2d62ed7c708e2f222e62b596d55
Base64
5bSK

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5D0A';
console.log(char);  // Output: 崊

Java:

char c = '\u5D0A';
System.out.println(c);  // Output: 崊

JSON:

{"text": "\u5D0A"}  // Value: 崊

Python:

char = '\u5D0A'
print(char)  # Output: 崊

Perl:

my $char = "\x{5D0A}";
print $char;  # Output: 崊

PHP:

$char = "\x{5D0A}";
echo $char;  // Output: 崊

Ruby:

char = "\u{5D0A}"
puts char  # Output: 崊

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23818;</p>  <!-- Display: 崊 -->

HTML Hexadecimal:

<p>HTML hex: &#x5D0A;</p>  <!-- Display: 崊 -->

URL Encoding:

// 崊 URL encoding
https://unicodefinder.com/search.php?query=%E5%B4%8A

Encodings

MD5:

c2fb8e80dc4f34ca9a87f83cf911ecdc

SHA1:

2d3598b588d3c2d62ed7c708e2f222e62b596d55

Base64:

5bSK