Unicode Finder

"佲" U+4F72(CJK UNIFIED IDEOGRAPH-4F72)

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

Programming

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

Web

CSS
\004F72
HtmlDecimal
佲
HtmlHexadecimal
佲
Url
%E4%BD%B2

Code

MD5
fdf7bfb2996051e592c9917b63c3d3f7
Sha1
56e42d500e9c91014109e2ce005c719be383ce8d
Base64
5L2y

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4F72';
console.log(char);  // Output: 佲

Java:

char c = '\u4F72';
System.out.println(c);  // Output: 佲

JSON:

{"text": "\u4F72"}  // Value: 佲

Python:

char = '\u4F72'
print(char)  # Output: 佲

Perl:

my $char = "\x{4F72}";
print $char;  # Output: 佲

PHP:

$char = "\x{4F72}";
echo $char;  // Output: 佲

Ruby:

char = "\u{4F72}"
puts char  # Output: 佲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20338;</p>  <!-- Display: 佲 -->

HTML Hexadecimal:

<p>HTML hex: &#x4F72;</p>  <!-- Display: 佲 -->

URL Encoding:

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

Encodings

MD5:

fdf7bfb2996051e592c9917b63c3d3f7

SHA1:

56e42d500e9c91014109e2ce005c719be383ce8d

Base64:

5L2y