Unicode Finder

"嶊" U+5D8A(CJK UNIFIED IDEOGRAPH-5D8A)

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

Programming

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

Web

CSS
\005D8A
HtmlDecimal
嶊
HtmlHexadecimal
嶊
Url
%E5%B6%8A

Code

MD5
8c959041f6431d13f6e27214bb5ec1d7
Sha1
e2b781e7ead359e340e274c0ae59ae3fc3e905b7
Base64
5baK

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5D8A';
console.log(char);  // Output: 嶊

Java:

char c = '\u5D8A';
System.out.println(c);  // Output: 嶊

JSON:

{"text": "\u5D8A"}  // Value: 嶊

Python:

char = '\u5D8A'
print(char)  # Output: 嶊

Perl:

my $char = "\x{5D8A}";
print $char;  # Output: 嶊

PHP:

$char = "\x{5D8A}";
echo $char;  // Output: 嶊

Ruby:

char = "\u{5D8A}"
puts char  # Output: 嶊

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23946;</p>  <!-- Display: 嶊 -->

HTML Hexadecimal:

<p>HTML hex: &#x5D8A;</p>  <!-- Display: 嶊 -->

URL Encoding:

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

Encodings

MD5:

8c959041f6431d13f6e27214bb5ec1d7

SHA1:

e2b781e7ead359e340e274c0ae59ae3fc3e905b7

Base64:

5baK