Unicode Finder

"嶁" U+5D81(CJK UNIFIED IDEOGRAPH-5D81)

U+5D81
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-5D81

Programming

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

Web

CSS
\005D81
HtmlDecimal
嶁
HtmlHexadecimal
嶁
Url
%E5%B6%81

Code

MD5
2a13e2e813b7e536f2104eef9c141265
Sha1
13a9e03b8d318b3a445808118fa7929c1d437c73
Base64
5baB

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5D81';
console.log(char);  // Output: 嶁

Java:

char c = '\u5D81';
System.out.println(c);  // Output: 嶁

JSON:

{"text": "\u5D81"}  // Value: 嶁

Python:

char = '\u5D81'
print(char)  # Output: 嶁

Perl:

my $char = "\x{5D81}";
print $char;  # Output: 嶁

PHP:

$char = "\x{5D81}";
echo $char;  // Output: 嶁

Ruby:

char = "\u{5D81}"
puts char  # Output: 嶁

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23937;</p>  <!-- Display: 嶁 -->

HTML Hexadecimal:

<p>HTML hex: &#x5D81;</p>  <!-- Display: 嶁 -->

URL Encoding:

// 嶁 URL encoding
https://unicodefinder.com/search.php?query=%E5%B6%81

Encodings

MD5:

2a13e2e813b7e536f2104eef9c141265

SHA1:

13a9e03b8d318b3a445808118fa7929c1d437c73

Base64:

5baB