Unicode Finder

"冡" U+51A1(CJK UNIFIED IDEOGRAPH-51A1)

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

Programming

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

Web

CSS
\0051A1
HtmlDecimal
冡
HtmlHexadecimal
冡
Url
%E5%86%A1

Code

MD5
6c53c4c3aa3124595e51562f714ecfe7
Sha1
c6f0b84ceeef0fc4d6cbf937ec8c8afc0c333bef
Base64
5Yah

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u51A1';
console.log(char);  // Output: 冡

Java:

char c = '\u51A1';
System.out.println(c);  // Output: 冡

JSON:

{"text": "\u51A1"}  // Value: 冡

Python:

char = '\u51A1'
print(char)  # Output: 冡

Perl:

my $char = "\x{51A1}";
print $char;  # Output: 冡

PHP:

$char = "\x{51A1}";
echo $char;  // Output: 冡

Ruby:

char = "\u{51A1}"
puts char  # Output: 冡

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20897;</p>  <!-- Display: 冡 -->

HTML Hexadecimal:

<p>HTML hex: &#x51A1;</p>  <!-- Display: 冡 -->

URL Encoding:

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

Encodings

MD5:

6c53c4c3aa3124595e51562f714ecfe7

SHA1:

c6f0b84ceeef0fc4d6cbf937ec8c8afc0c333bef

Base64:

5Yah