Unicode Finder

"仇" U+4EC7(CJK UNIFIED IDEOGRAPH-4EC7)

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

Programming

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

Web

CSS
\004EC7
HtmlDecimal
仇
HtmlHexadecimal
仇
Url
%E4%BB%87

Code

MD5
dd1dca7c4fd2da877fad6a8df785b61f
Sha1
b62161fe9a6f3588e54411b229da08455801c2cf
Base64
5LuH

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4EC7';
console.log(char);  // Output: 仇

Java:

char c = '\u4EC7';
System.out.println(c);  // Output: 仇

JSON:

{"text": "\u4EC7"}  // Value: 仇

Python:

char = '\u4EC7'
print(char)  # Output: 仇

Perl:

my $char = "\x{4EC7}";
print $char;  # Output: 仇

PHP:

$char = "\x{4EC7}";
echo $char;  // Output: 仇

Ruby:

char = "\u{4EC7}"
puts char  # Output: 仇

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20167;</p>  <!-- Display: 仇 -->

HTML Hexadecimal:

<p>HTML hex: &#x4EC7;</p>  <!-- Display: 仇 -->

URL Encoding:

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

Encodings

MD5:

dd1dca7c4fd2da877fad6a8df785b61f

SHA1:

b62161fe9a6f3588e54411b229da08455801c2cf

Base64:

5LuH