Unicode Finder

"中" U+4E2D(CJK UNIFIED IDEOGRAPH-4E2D)

U+4E2D
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-4E2D

Programming

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

Web

CSS
\004E2D
HtmlDecimal
中
HtmlHexadecimal
中
Url
%E4%B8%AD

Code

MD5
aed1dfbc31703955e64806b799b67645
Sha1
0869071c92c0c11170ac87036bebedb52ea0c993
Base64
5Lit

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u4E2D';
console.log(char);  // Output: 中

Java:

char c = '\u4E2D';
System.out.println(c);  // Output: 中

JSON:

{"text": "\u4E2D"}  // Value: 中

Python:

char = '\u4E2D'
print(char)  # Output: 中

Perl:

my $char = "\x{4E2D}";
print $char;  # Output: 中

PHP:

$char = "\x{4E2D}";
echo $char;  // Output: 中

Ruby:

char = "\u{4E2D}"
puts char  # Output: 中

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20013;</p>  <!-- Display: 中 -->

HTML Hexadecimal:

<p>HTML hex: &#x4E2D;</p>  <!-- Display: 中 -->

URL Encoding:

// 中 URL encoding
https://unicodefinder.com/search.php?query=%E4%B8%AD

Encodings

MD5:

aed1dfbc31703955e64806b799b67645

SHA1:

0869071c92c0c11170ac87036bebedb52ea0c993

Base64:

5Lit