Unicode Finder

"们" U+4EEC(CJK UNIFIED IDEOGRAPH-4EEC)

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

Programming

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

Web

CSS
\004EEC
HtmlDecimal
们
HtmlHexadecimal
们
Url
%E4%BB%AC

Code

MD5
888632a45d6ca573ce6f80db6f8bbc8c
Sha1
91c76e0b5a827e4bfd9ff8e70d5932e26daaf155
Base64
5Lus

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4EEC';
console.log(char);  // Output: 们

Java:

char c = '\u4EEC';
System.out.println(c);  // Output: 们

JSON:

{"text": "\u4EEC"}  // Value: 们

Python:

char = '\u4EEC'
print(char)  # Output: 们

Perl:

my $char = "\x{4EEC}";
print $char;  # Output: 们

PHP:

$char = "\x{4EEC}";
echo $char;  // Output: 们

Ruby:

char = "\u{4EEC}"
puts char  # Output: 们

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20204;</p>  <!-- Display: 们 -->

HTML Hexadecimal:

<p>HTML hex: &#x4EEC;</p>  <!-- Display: 们 -->

URL Encoding:

// 们 URL encoding
https://unicodefinder.com/search.php?query=%E4%BB%AC

Encodings

MD5:

888632a45d6ca573ce6f80db6f8bbc8c

SHA1:

91c76e0b5a827e4bfd9ff8e70d5932e26daaf155

Base64:

5Lus