Unicode Finder

"佂" U+4F42(CJK UNIFIED IDEOGRAPH-4F42)

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

Programming

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

Web

CSS
\004F42
HtmlDecimal
佂
HtmlHexadecimal
佂
Url
%E4%BD%82

Code

MD5
bcca32fa8b80ccf79153d3aa426b3fd6
Sha1
69b39125179d822203fdba451c7082c62053548a
Base64
5L2C

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4F42';
console.log(char);  // Output: 佂

Java:

char c = '\u4F42';
System.out.println(c);  // Output: 佂

JSON:

{"text": "\u4F42"}  // Value: 佂

Python:

char = '\u4F42'
print(char)  # Output: 佂

Perl:

my $char = "\x{4F42}";
print $char;  # Output: 佂

PHP:

$char = "\x{4F42}";
echo $char;  // Output: 佂

Ruby:

char = "\u{4F42}"
puts char  # Output: 佂

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20290;</p>  <!-- Display: 佂 -->

HTML Hexadecimal:

<p>HTML hex: &#x4F42;</p>  <!-- Display: 佂 -->

URL Encoding:

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

Encodings

MD5:

bcca32fa8b80ccf79153d3aa426b3fd6

SHA1:

69b39125179d822203fdba451c7082c62053548a

Base64:

5L2C