Unicode Finder

"凗" U+51D7(CJK UNIFIED IDEOGRAPH-51D7)

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

Programming

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

Web

CSS
\0051D7
HtmlDecimal
凗
HtmlHexadecimal
凗
Url
%E5%87%97

Code

MD5
3ee0ee36a154a55e3faf4c7b1cd6d3b7
Sha1
f9bdc5b031066beb6113099a7bf0d5566691d8bb
Base64
5YeX

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u51D7';
console.log(char);  // Output: 凗

Java:

char c = '\u51D7';
System.out.println(c);  // Output: 凗

JSON:

{"text": "\u51D7"}  // Value: 凗

Python:

char = '\u51D7'
print(char)  # Output: 凗

Perl:

my $char = "\x{51D7}";
print $char;  # Output: 凗

PHP:

$char = "\x{51D7}";
echo $char;  // Output: 凗

Ruby:

char = "\u{51D7}"
puts char  # Output: 凗

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20951;</p>  <!-- Display: 凗 -->

HTML Hexadecimal:

<p>HTML hex: &#x51D7;</p>  <!-- Display: 凗 -->

URL Encoding:

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

Encodings

MD5:

3ee0ee36a154a55e3faf4c7b1cd6d3b7

SHA1:

f9bdc5b031066beb6113099a7bf0d5566691d8bb

Base64:

5YeX