Unicode Finder

"任" U+4EFB(CJK UNIFIED IDEOGRAPH-4EFB)

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

Programming

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

Web

CSS
\004EFB
HtmlDecimal
任
HtmlHexadecimal
任
Url
%E4%BB%BB

Code

MD5
0e3e0e14c52cb474610a0f72f36058a7
Sha1
0d596db2dbfe00825b2e74abdd7ae9b2277ca183
Base64
5Lu7

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4EFB';
console.log(char);  // Output: 任

Java:

char c = '\u4EFB';
System.out.println(c);  // Output: 任

JSON:

{"text": "\u4EFB"}  // Value: 任

Python:

char = '\u4EFB'
print(char)  # Output: 任

Perl:

my $char = "\x{4EFB}";
print $char;  # Output: 任

PHP:

$char = "\x{4EFB}";
echo $char;  // Output: 任

Ruby:

char = "\u{4EFB}"
puts char  # Output: 任

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20219;</p>  <!-- Display: 任 -->

HTML Hexadecimal:

<p>HTML hex: &#x4EFB;</p>  <!-- Display: 任 -->

URL Encoding:

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

Encodings

MD5:

0e3e0e14c52cb474610a0f72f36058a7

SHA1:

0d596db2dbfe00825b2e74abdd7ae9b2277ca183

Base64:

5Lu7