Unicode Finder

"乭" U+4E6D(CJK UNIFIED IDEOGRAPH-4E6D)

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

Programming

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

Web

CSS
\004E6D
HtmlDecimal
乭
HtmlHexadecimal
乭
Url
%E4%B9%AD

Code

MD5
df09686d92f8c2808192b318c6a6eee3
Sha1
3ea7cd6668235048c7791a8f70b0be27af7d3d7a
Base64
5Lmt

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4E6D';
console.log(char);  // Output: 乭

Java:

char c = '\u4E6D';
System.out.println(c);  // Output: 乭

JSON:

{"text": "\u4E6D"}  // Value: 乭

Python:

char = '\u4E6D'
print(char)  # Output: 乭

Perl:

my $char = "\x{4E6D}";
print $char;  # Output: 乭

PHP:

$char = "\x{4E6D}";
echo $char;  // Output: 乭

Ruby:

char = "\u{4E6D}"
puts char  # Output: 乭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20077;</p>  <!-- Display: 乭 -->

HTML Hexadecimal:

<p>HTML hex: &#x4E6D;</p>  <!-- Display: 乭 -->

URL Encoding:

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

Encodings

MD5:

df09686d92f8c2808192b318c6a6eee3

SHA1:

3ea7cd6668235048c7791a8f70b0be27af7d3d7a

Base64:

5Lmt