Unicode Finder

"丽" U+4E3D(CJK UNIFIED IDEOGRAPH-4E3D)

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

Programming

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

Web

CSS
\004E3D
HtmlDecimal
丽
HtmlHexadecimal
丽
Url
%E4%B8%BD

Code

MD5
98c3aaff536e3ac1ef0febd2c72cc0cf
Sha1
83563dbf1f2b3f53dd367ee3d66c3d9a759661a6
Base64
5Li9

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4E3D';
console.log(char);  // Output: 丽

Java:

char c = '\u4E3D';
System.out.println(c);  // Output: 丽

JSON:

{"text": "\u4E3D"}  // Value: 丽

Python:

char = '\u4E3D'
print(char)  # Output: 丽

Perl:

my $char = "\x{4E3D}";
print $char;  # Output: 丽

PHP:

$char = "\x{4E3D}";
echo $char;  // Output: 丽

Ruby:

char = "\u{4E3D}"
puts char  # Output: 丽

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20029;</p>  <!-- Display: 丽 -->

HTML Hexadecimal:

<p>HTML hex: &#x4E3D;</p>  <!-- Display: 丽 -->

URL Encoding:

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

Encodings

MD5:

98c3aaff536e3ac1ef0febd2c72cc0cf

SHA1:

83563dbf1f2b3f53dd367ee3d66c3d9a759661a6

Base64:

5Li9