Unicode Finder

"冭" U+51AD(CJK UNIFIED IDEOGRAPH-51AD)

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

Programming

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

Web

CSS
\0051AD
HtmlDecimal
冭
HtmlHexadecimal
冭
Url
%E5%86%AD

Code

MD5
5e35582755dbb23f314ac258d50adae8
Sha1
45da23ebc4b947b636b4e993c2f3bc859165ac5a
Base64
5Yat

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u51AD';
console.log(char);  // Output: 冭

Java:

char c = '\u51AD';
System.out.println(c);  // Output: 冭

JSON:

{"text": "\u51AD"}  // Value: 冭

Python:

char = '\u51AD'
print(char)  # Output: 冭

Perl:

my $char = "\x{51AD}";
print $char;  # Output: 冭

PHP:

$char = "\x{51AD}";
echo $char;  // Output: 冭

Ruby:

char = "\u{51AD}"
puts char  # Output: 冭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20909;</p>  <!-- Display: 冭 -->

HTML Hexadecimal:

<p>HTML hex: &#x51AD;</p>  <!-- Display: 冭 -->

URL Encoding:

// 冭 URL encoding
https://unicodefinder.com/search.php?query=%E5%86%AD

Encodings

MD5:

5e35582755dbb23f314ac258d50adae8

SHA1:

45da23ebc4b947b636b4e993c2f3bc859165ac5a

Base64:

5Yat