Unicode Finder

"佺" U+4F7A(CJK UNIFIED IDEOGRAPH-4F7A)

U+4F7A
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-4F7A

Programming

C
\u4F7A
JavaScript
\u4F7A
Java
\u4F7A
Json
\u4F7A
Python
\u4F7A
Perl
\x{4F7A}
PHP
\x{4F7A}
Ruby
\u{4F7A}
Rust
\u{4F7A}
Go
\u4F7A

Web

CSS
\004F7A
HtmlDecimal
佺
HtmlHexadecimal
佺
Url
%E4%BD%BA

Code

MD5
f6eb61cf9edcc9c4ae926d18e5323f95
Sha1
cfeb7d6b760db9d0fa80365d31079966817fed07
Base64
5L26

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4F7A';
console.log(char);  // Output: 佺

Java:

char c = '\u4F7A';
System.out.println(c);  // Output: 佺

JSON:

{"text": "\u4F7A"}  // Value: 佺

Python:

char = '\u4F7A'
print(char)  # Output: 佺

Perl:

my $char = "\x{4F7A}";
print $char;  # Output: 佺

PHP:

$char = "\x{4F7A}";
echo $char;  // Output: 佺

Ruby:

char = "\u{4F7A}"
puts char  # Output: 佺

Rust:

let c = '\u{4F7A}';
println!("{}", c);  // Output: 佺

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\004F7A";  /* Display: 佺 */
}

HTML Decimal:

<p>HTML decimal: &#20346;</p>  <!-- Display: 佺 -->

HTML Hexadecimal:

<p>HTML hex: &#x4F7A;</p>  <!-- Display: 佺 -->

URL Encoding:

// 佺 URL encoding
https://unicodefinder.com/search.php?query=%E4%BD%BA

Encodings

MD5:

f6eb61cf9edcc9c4ae926d18e5323f95

SHA1:

cfeb7d6b760db9d0fa80365d31079966817fed07

Base64:

5L26