Unicode Finder

"儞" U+511E(CJK UNIFIED IDEOGRAPH-511E)

U+511E
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-511E

Programming

C
\u511E
JavaScript
\u511E
Java
\u511E
Json
\u511E
Python
\u511E
Perl
\x{511E}
PHP
\x{511E}
Ruby
\u{511E}
Rust
\u{511E}
Go
\u511E

Web

CSS
\00511E
HtmlDecimal
儞
HtmlHexadecimal
儞
Url
%E5%84%9E

Code

MD5
4d6f24c329b93f7951179865eddd702f
Sha1
23a081ca793b414bb1d4b706c668b5a38f9d3876
Base64
5YSe

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u511E';
console.log(char);  // Output: 儞

Java:

char c = '\u511E';
System.out.println(c);  // Output: 儞

JSON:

{"text": "\u511E"}  // Value: 儞

Python:

char = '\u511E'
print(char)  # Output: 儞

Perl:

my $char = "\x{511E}";
print $char;  # Output: 儞

PHP:

$char = "\x{511E}";
echo $char;  // Output: 儞

Ruby:

char = "\u{511E}"
puts char  # Output: 儞

Rust:

let c = '\u{511E}';
println!("{}", c);  // Output: 儞

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00511E";  /* Display: 儞 */
}

HTML Decimal:

<p>HTML decimal: &#20766;</p>  <!-- Display: 儞 -->

HTML Hexadecimal:

<p>HTML hex: &#x511E;</p>  <!-- Display: 儞 -->

URL Encoding:

// 儞 URL encoding
https://unicodefinder.com/search.php?query=%E5%84%9E

Encodings

MD5:

4d6f24c329b93f7951179865eddd702f

SHA1:

23a081ca793b414bb1d4b706c668b5a38f9d3876

Base64:

5YSe