Unicode Finder

"冫" U+51AB(CJK UNIFIED IDEOGRAPH-51AB)

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

Programming

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

Web

CSS
\0051AB
HtmlDecimal
冫
HtmlHexadecimal
冫
Url
%E5%86%AB

Code

MD5
5f7ebaf492335c2fe98e3faa4e56e24a
Sha1
0fb09c31ad3df1d53e8e20035bcd5488dab38e6e
Base64
5Yar

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u51AB';
console.log(char);  // Output: 冫

Java:

char c = '\u51AB';
System.out.println(c);  // Output: 冫

JSON:

{"text": "\u51AB"}  // Value: 冫

Python:

char = '\u51AB'
print(char)  # Output: 冫

Perl:

my $char = "\x{51AB}";
print $char;  # Output: 冫

PHP:

$char = "\x{51AB}";
echo $char;  // Output: 冫

Ruby:

char = "\u{51AB}"
puts char  # Output: 冫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20907;</p>  <!-- Display: 冫 -->

HTML Hexadecimal:

<p>HTML hex: &#x51AB;</p>  <!-- Display: 冫 -->

URL Encoding:

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

Encodings

MD5:

5f7ebaf492335c2fe98e3faa4e56e24a

SHA1:

0fb09c31ad3df1d53e8e20035bcd5488dab38e6e

Base64:

5Yar