Unicode Finder

"乌" U+4E4C(CJK UNIFIED IDEOGRAPH-4E4C)

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

Programming

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

Web

CSS
\004E4C
HtmlDecimal
乌
HtmlHexadecimal
乌
Url
%E4%B9%8C

Code

MD5
23fd0a1ddfa8ce49d22733b4cdbbcfe9
Sha1
46ed6449976786903faa6afb1ce712715cb2ad99
Base64
5LmM

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4E4C';
console.log(char);  // Output: 乌

Java:

char c = '\u4E4C';
System.out.println(c);  // Output: 乌

JSON:

{"text": "\u4E4C"}  // Value: 乌

Python:

char = '\u4E4C'
print(char)  # Output: 乌

Perl:

my $char = "\x{4E4C}";
print $char;  # Output: 乌

PHP:

$char = "\x{4E4C}";
echo $char;  // Output: 乌

Ruby:

char = "\u{4E4C}"
puts char  # Output: 乌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20044;</p>  <!-- Display: 乌 -->

HTML Hexadecimal:

<p>HTML hex: &#x4E4C;</p>  <!-- Display: 乌 -->

URL Encoding:

// 乌 URL encoding
https://unicodefinder.com/search.php?query=%E4%B9%8C

Encodings

MD5:

23fd0a1ddfa8ce49d22733b4cdbbcfe9

SHA1:

46ed6449976786903faa6afb1ce712715cb2ad99

Base64:

5LmM