Unicode Finder

"佹" U+4F79(CJK UNIFIED IDEOGRAPH-4F79)

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

Programming

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

Web

CSS
\004F79
HtmlDecimal
佹
HtmlHexadecimal
佹
Url
%E4%BD%B9

Code

MD5
8a42bc17b9c0b65ee3cf2ea5678b54f4
Sha1
b437f154a2de429bd8c0a86dfaf2f9ffcb734e17
Base64
5L25

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4F79';
console.log(char);  // Output: 佹

Java:

char c = '\u4F79';
System.out.println(c);  // Output: 佹

JSON:

{"text": "\u4F79"}  // Value: 佹

Python:

char = '\u4F79'
print(char)  # Output: 佹

Perl:

my $char = "\x{4F79}";
print $char;  # Output: 佹

PHP:

$char = "\x{4F79}";
echo $char;  // Output: 佹

Ruby:

char = "\u{4F79}"
puts char  # Output: 佹

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20345;</p>  <!-- Display: 佹 -->

HTML Hexadecimal:

<p>HTML hex: &#x4F79;</p>  <!-- Display: 佹 -->

URL Encoding:

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

Encodings

MD5:

8a42bc17b9c0b65ee3cf2ea5678b54f4

SHA1:

b437f154a2de429bd8c0a86dfaf2f9ffcb734e17

Base64:

5L25