Unicode Finder

"仉" U+4EC9(CJK UNIFIED IDEOGRAPH-4EC9)

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

Programming

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

Web

CSS
\004EC9
HtmlDecimal
仉
HtmlHexadecimal
仉
Url
%E4%BB%89

Code

MD5
deb184ead2a71ee0eabe6d084b8fb3c8
Sha1
50406f3c0f438540e391a73375ae31fc71d579b4
Base64
5LuJ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4EC9';
console.log(char);  // Output: 仉

Java:

char c = '\u4EC9';
System.out.println(c);  // Output: 仉

JSON:

{"text": "\u4EC9"}  // Value: 仉

Python:

char = '\u4EC9'
print(char)  # Output: 仉

Perl:

my $char = "\x{4EC9}";
print $char;  # Output: 仉

PHP:

$char = "\x{4EC9}";
echo $char;  // Output: 仉

Ruby:

char = "\u{4EC9}"
puts char  # Output: 仉

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20169;</p>  <!-- Display: 仉 -->

HTML Hexadecimal:

<p>HTML hex: &#x4EC9;</p>  <!-- Display: 仉 -->

URL Encoding:

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

Encodings

MD5:

deb184ead2a71ee0eabe6d084b8fb3c8

SHA1:

50406f3c0f438540e391a73375ae31fc71d579b4

Base64:

5LuJ