Unicode Finder

"仆" U+4EC6(CJK UNIFIED IDEOGRAPH-4EC6)

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

Programming

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

Web

CSS
\004EC6
HtmlDecimal
仆
HtmlHexadecimal
仆
Url
%E4%BB%86

Code

MD5
3613cd5ba5689cd33c25251df283cbdd
Sha1
bd8bd2eda34319286c57e4cd485b2dc07058ea4a
Base64
5LuG

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4EC6';
console.log(char);  // Output: 仆

Java:

char c = '\u4EC6';
System.out.println(c);  // Output: 仆

JSON:

{"text": "\u4EC6"}  // Value: 仆

Python:

char = '\u4EC6'
print(char)  # Output: 仆

Perl:

my $char = "\x{4EC6}";
print $char;  # Output: 仆

PHP:

$char = "\x{4EC6}";
echo $char;  // Output: 仆

Ruby:

char = "\u{4EC6}"
puts char  # Output: 仆

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20166;</p>  <!-- Display: 仆 -->

HTML Hexadecimal:

<p>HTML hex: &#x4EC6;</p>  <!-- Display: 仆 -->

URL Encoding:

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

Encodings

MD5:

3613cd5ba5689cd33c25251df283cbdd

SHA1:

bd8bd2eda34319286c57e4cd485b2dc07058ea4a

Base64:

5LuG