Unicode Finder

"凙" U+51D9(CJK UNIFIED IDEOGRAPH-51D9)

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

Programming

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

Web

CSS
\0051D9
HtmlDecimal
凙
HtmlHexadecimal
凙
Url
%E5%87%99

Code

MD5
6f0de6c0fba16f9257d6681f68159c3c
Sha1
650f571105bf7f96eff51a57bb6e8745da699695
Base64
5YeZ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u51D9';
console.log(char);  // Output: 凙

Java:

char c = '\u51D9';
System.out.println(c);  // Output: 凙

JSON:

{"text": "\u51D9"}  // Value: 凙

Python:

char = '\u51D9'
print(char)  # Output: 凙

Perl:

my $char = "\x{51D9}";
print $char;  # Output: 凙

PHP:

$char = "\x{51D9}";
echo $char;  // Output: 凙

Ruby:

char = "\u{51D9}"
puts char  # Output: 凙

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20953;</p>  <!-- Display: 凙 -->

HTML Hexadecimal:

<p>HTML hex: &#x51D9;</p>  <!-- Display: 凙 -->

URL Encoding:

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

Encodings

MD5:

6f0de6c0fba16f9257d6681f68159c3c

SHA1:

650f571105bf7f96eff51a57bb6e8745da699695

Base64:

5YeZ