Unicode Finder

"佸" U+4F78(CJK UNIFIED IDEOGRAPH-4F78)

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

Programming

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

Web

CSS
\004F78
HtmlDecimal
佸
HtmlHexadecimal
佸
Url
%E4%BD%B8

Code

MD5
f0173d0f9e9274065614d97c84ea500e
Sha1
448e91f0676fe79f7e5bf1b6bd67d3afe02a5f01
Base64
5L24

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4F78';
console.log(char);  // Output: 佸

Java:

char c = '\u4F78';
System.out.println(c);  // Output: 佸

JSON:

{"text": "\u4F78"}  // Value: 佸

Python:

char = '\u4F78'
print(char)  # Output: 佸

Perl:

my $char = "\x{4F78}";
print $char;  # Output: 佸

PHP:

$char = "\x{4F78}";
echo $char;  // Output: 佸

Ruby:

char = "\u{4F78}"
puts char  # Output: 佸

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20344;</p>  <!-- Display: 佸 -->

HTML Hexadecimal:

<p>HTML hex: &#x4F78;</p>  <!-- Display: 佸 -->

URL Encoding:

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

Encodings

MD5:

f0173d0f9e9274065614d97c84ea500e

SHA1:

448e91f0676fe79f7e5bf1b6bd67d3afe02a5f01

Base64:

5L24