Unicode Finder

"仁" U+4EC1(CJK UNIFIED IDEOGRAPH-4EC1)

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

Programming

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

Web

CSS
\004EC1
HtmlDecimal
仁
HtmlHexadecimal
仁
Url
%E4%BB%81

Code

MD5
cfa6a08f21f09b8acaa5015de7fd3463
Sha1
0241603f8c1eafdc327855736dadfc2b9419762e
Base64
5LuB

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4EC1';
console.log(char);  // Output: 仁

Java:

char c = '\u4EC1';
System.out.println(c);  // Output: 仁

JSON:

{"text": "\u4EC1"}  // Value: 仁

Python:

char = '\u4EC1'
print(char)  # Output: 仁

Perl:

my $char = "\x{4EC1}";
print $char;  # Output: 仁

PHP:

$char = "\x{4EC1}";
echo $char;  // Output: 仁

Ruby:

char = "\u{4EC1}"
puts char  # Output: 仁

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20161;</p>  <!-- Display: 仁 -->

HTML Hexadecimal:

<p>HTML hex: &#x4EC1;</p>  <!-- Display: 仁 -->

URL Encoding:

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

Encodings

MD5:

cfa6a08f21f09b8acaa5015de7fd3463

SHA1:

0241603f8c1eafdc327855736dadfc2b9419762e

Base64:

5LuB