Unicode Finder

"什" U+4EC0(CJK UNIFIED IDEOGRAPH-4EC0)

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

Programming

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

Web

CSS
\004EC0
HtmlDecimal
什
HtmlHexadecimal
什
Url
%E4%BB%80

Code

MD5
3a7dc8e563e330b89faf0f8cacbf69e6
Sha1
6f017db727c87e9dd71bc5ea57ddb51aedb1fe0b
Base64
5LuA

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4EC0';
console.log(char);  // Output: 什

Java:

char c = '\u4EC0';
System.out.println(c);  // Output: 什

JSON:

{"text": "\u4EC0"}  // Value: 什

Python:

char = '\u4EC0'
print(char)  # Output: 什

Perl:

my $char = "\x{4EC0}";
print $char;  # Output: 什

PHP:

$char = "\x{4EC0}";
echo $char;  // Output: 什

Ruby:

char = "\u{4EC0}"
puts char  # Output: 什

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20160;</p>  <!-- Display: 什 -->

HTML Hexadecimal:

<p>HTML hex: &#x4EC0;</p>  <!-- Display: 什 -->

URL Encoding:

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

Encodings

MD5:

3a7dc8e563e330b89faf0f8cacbf69e6

SHA1:

6f017db727c87e9dd71bc5ea57ddb51aedb1fe0b

Base64:

5LuA