Unicode Finder

"乁" U+4E41(CJK UNIFIED IDEOGRAPH-4E41)

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

Programming

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

Web

CSS
\004E41
HtmlDecimal
乁
HtmlHexadecimal
乁
Url
%E4%B9%81

Code

MD5
0f482506ead6635e9034a47ce278637b
Sha1
e831deea078adef9ce0f2a32101de26d9cfd186f
Base64
5LmB

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4E41';
console.log(char);  // Output: 乁

Java:

char c = '\u4E41';
System.out.println(c);  // Output: 乁

JSON:

{"text": "\u4E41"}  // Value: 乁

Python:

char = '\u4E41'
print(char)  # Output: 乁

Perl:

my $char = "\x{4E41}";
print $char;  # Output: 乁

PHP:

$char = "\x{4E41}";
echo $char;  // Output: 乁

Ruby:

char = "\u{4E41}"
puts char  # Output: 乁

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20033;</p>  <!-- Display: 乁 -->

HTML Hexadecimal:

<p>HTML hex: &#x4E41;</p>  <!-- Display: 乁 -->

URL Encoding:

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

Encodings

MD5:

0f482506ead6635e9034a47ce278637b

SHA1:

e831deea078adef9ce0f2a32101de26d9cfd186f

Base64:

5LmB