Unicode Finder

"偀" U+5040(CJK UNIFIED IDEOGRAPH-5040)

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

Programming

C
\u5040
JavaScript
\u5040
Java
\u5040
Json
\u5040
Python
\u5040
Perl
\x{5040}
PHP
\x{5040}
Ruby
\u{5040}
Rust
\u{5040}
Go
\u5040

Web

CSS
\005040
HtmlDecimal
偀
HtmlHexadecimal
偀
Url
%E5%81%80

Code

MD5
d074cc64155c26deae4a581245b1bffe
Sha1
1d1088bc76ed3a4643316bd9d35c497cea3415c0
Base64
5YGA

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5040';
console.log(char);  // Output: 偀

Java:

char c = '\u5040';
System.out.println(c);  // Output: 偀

JSON:

{"text": "\u5040"}  // Value: 偀

Python:

char = '\u5040'
print(char)  # Output: 偀

Perl:

my $char = "\x{5040}";
print $char;  # Output: 偀

PHP:

$char = "\x{5040}";
echo $char;  // Output: 偀

Ruby:

char = "\u{5040}"
puts char  # Output: 偀

Rust:

let c = '\u{5040}';
println!("{}", c);  // Output: 偀

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005040";  /* Display: 偀 */
}

HTML Decimal:

<p>HTML decimal: &#20544;</p>  <!-- Display: 偀 -->

HTML Hexadecimal:

<p>HTML hex: &#x5040;</p>  <!-- Display: 偀 -->

URL Encoding:

// 偀 URL encoding
https://unicodefinder.com/search.php?query=%E5%81%80

Encodings

MD5:

d074cc64155c26deae4a581245b1bffe

SHA1:

1d1088bc76ed3a4643316bd9d35c497cea3415c0

Base64:

5YGA