Unicode Finder

"嵓" U+5D53(CJK UNIFIED IDEOGRAPH-5D53)

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

Programming

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

Web

CSS
\005D53
HtmlDecimal
嵓
HtmlHexadecimal
嵓
Url
%E5%B5%93

Code

MD5
e47df9e52e971f3c21f70721be5b6d38
Sha1
4917ac73e16d375b9ad9eb102502347f3e5e2e8e
Base64
5bWT

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5D53';
console.log(char);  // Output: 嵓

Java:

char c = '\u5D53';
System.out.println(c);  // Output: 嵓

JSON:

{"text": "\u5D53"}  // Value: 嵓

Python:

char = '\u5D53'
print(char)  # Output: 嵓

Perl:

my $char = "\x{5D53}";
print $char;  # Output: 嵓

PHP:

$char = "\x{5D53}";
echo $char;  // Output: 嵓

Ruby:

char = "\u{5D53}"
puts char  # Output: 嵓

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23891;</p>  <!-- Display: 嵓 -->

HTML Hexadecimal:

<p>HTML hex: &#x5D53;</p>  <!-- Display: 嵓 -->

URL Encoding:

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

Encodings

MD5:

e47df9e52e971f3c21f70721be5b6d38

SHA1:

4917ac73e16d375b9ad9eb102502347f3e5e2e8e

Base64:

5bWT