Unicode Finder

"冯" U+51AF(CJK UNIFIED IDEOGRAPH-51AF)

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

Programming

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

Web

CSS
\0051AF
HtmlDecimal
冯
HtmlHexadecimal
冯
Url
%E5%86%AF

Code

MD5
ab7b7bcb200420918e8fdfa9c5751785
Sha1
f4828ec1aecc4675b6c5fc49aa3ecf2a547cd48b
Base64
5Yav

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u51AF';
console.log(char);  // Output: 冯

Java:

char c = '\u51AF';
System.out.println(c);  // Output: 冯

JSON:

{"text": "\u51AF"}  // Value: 冯

Python:

char = '\u51AF'
print(char)  # Output: 冯

Perl:

my $char = "\x{51AF}";
print $char;  # Output: 冯

PHP:

$char = "\x{51AF}";
echo $char;  // Output: 冯

Ruby:

char = "\u{51AF}"
puts char  # Output: 冯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20911;</p>  <!-- Display: 冯 -->

HTML Hexadecimal:

<p>HTML hex: &#x51AF;</p>  <!-- Display: 冯 -->

URL Encoding:

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

Encodings

MD5:

ab7b7bcb200420918e8fdfa9c5751785

SHA1:

f4828ec1aecc4675b6c5fc49aa3ecf2a547cd48b

Base64:

5Yav