Unicode Finder

"冦" U+51A6(CJK UNIFIED IDEOGRAPH-51A6)

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

Programming

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

Web

CSS
\0051A6
HtmlDecimal
冦
HtmlHexadecimal
冦
Url
%E5%86%A6

Code

MD5
0aa13302e3d24a1fef544705e315b57a
Sha1
c9c7ad770ae3720b029170652fc8df1d97413258
Base64
5Yam

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u51A6';
console.log(char);  // Output: 冦

Java:

char c = '\u51A6';
System.out.println(c);  // Output: 冦

JSON:

{"text": "\u51A6"}  // Value: 冦

Python:

char = '\u51A6'
print(char)  # Output: 冦

Perl:

my $char = "\x{51A6}";
print $char;  # Output: 冦

PHP:

$char = "\x{51A6}";
echo $char;  // Output: 冦

Ruby:

char = "\u{51A6}"
puts char  # Output: 冦

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20902;</p>  <!-- Display: 冦 -->

HTML Hexadecimal:

<p>HTML hex: &#x51A6;</p>  <!-- Display: 冦 -->

URL Encoding:

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

Encodings

MD5:

0aa13302e3d24a1fef544705e315b57a

SHA1:

c9c7ad770ae3720b029170652fc8df1d97413258

Base64:

5Yam