Unicode Finder

"凥" U+51E5(CJK UNIFIED IDEOGRAPH-51E5)

U+51E5
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-51E5

Programming

C
\u51E5
JavaScript
\u51E5
Java
\u51E5
Json
\u51E5
Python
\u51E5
Perl
\x{51E5}
PHP
\x{51E5}
Ruby
\u{51E5}
Rust
\u{51E5}
Go
\u51E5

Web

CSS
\0051E5
HtmlDecimal
凥
HtmlHexadecimal
凥
Url
%E5%87%A5

Code

MD5
ca0ed371ed763960add90b409083cbd8
Sha1
a5fdf78d8380ff2ef0cacb3e7818518f19de76ca
Base64
5Yel

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u51E5';
console.log(char);  // Output: 凥

Java:

char c = '\u51E5';
System.out.println(c);  // Output: 凥

JSON:

{"text": "\u51E5"}  // Value: 凥

Python:

char = '\u51E5'
print(char)  # Output: 凥

Perl:

my $char = "\x{51E5}";
print $char;  # Output: 凥

PHP:

$char = "\x{51E5}";
echo $char;  // Output: 凥

Ruby:

char = "\u{51E5}"
puts char  # Output: 凥

Rust:

let c = '\u{51E5}';
println!("{}", c);  // Output: 凥

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0051E5";  /* Display: 凥 */
}

HTML Decimal:

<p>HTML decimal: &#20965;</p>  <!-- Display: 凥 -->

HTML Hexadecimal:

<p>HTML hex: &#x51E5;</p>  <!-- Display: 凥 -->

URL Encoding:

// 凥 URL encoding
https://unicodefinder.com/search.php?query=%E5%87%A5

Encodings

MD5:

ca0ed371ed763960add90b409083cbd8

SHA1:

a5fdf78d8380ff2ef0cacb3e7818518f19de76ca

Base64:

5Yel