Unicode Finder

"仌" U+4ECC(CJK UNIFIED IDEOGRAPH-4ECC)

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

Programming

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

Web

CSS
\004ECC
HtmlDecimal
仌
HtmlHexadecimal
仌
Url
%E4%BB%8C

Code

MD5
3d697524a1633a30524ccc1a4398c308
Sha1
abeda10deed1687633d8d75f14cb10ed610e2cbf
Base64
5LuM

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4ECC';
console.log(char);  // Output: 仌

Java:

char c = '\u4ECC';
System.out.println(c);  // Output: 仌

JSON:

{"text": "\u4ECC"}  // Value: 仌

Python:

char = '\u4ECC'
print(char)  # Output: 仌

Perl:

my $char = "\x{4ECC}";
print $char;  # Output: 仌

PHP:

$char = "\x{4ECC}";
echo $char;  // Output: 仌

Ruby:

char = "\u{4ECC}"
puts char  # Output: 仌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20172;</p>  <!-- Display: 仌 -->

HTML Hexadecimal:

<p>HTML hex: &#x4ECC;</p>  <!-- Display: 仌 -->

URL Encoding:

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

Encodings

MD5:

3d697524a1633a30524ccc1a4398c308

SHA1:

abeda10deed1687633d8d75f14cb10ed610e2cbf

Base64:

5LuM