Unicode Finder

"练" U+7EC3(CJK UNIFIED IDEOGRAPH-7EC3)

U+7EC3
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-7EC3

Programming

C
\u7EC3
JavaScript
\u7EC3
Java
\u7EC3
Json
\u7EC3
Python
\u7EC3
Perl
\x{7EC3}
PHP
\x{7EC3}
Ruby
\u{7EC3}
Rust
\u{7EC3}
Go
\u7EC3

Web

CSS
\007EC3
HtmlDecimal
练
HtmlHexadecimal
练
Url
%E7%BB%83

Code

MD5
8815cb52369c35c4b41fd4d75eb24bc4
Sha1
70bcf691e18fe2efe1320197910fa74139c2eccb
Base64
57uD

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7EC3';
console.log(char);  // Output: 练

Java:

char c = '\u7EC3';
System.out.println(c);  // Output: 练

JSON:

{"text": "\u7EC3"}  // Value: 练

Python:

char = '\u7EC3'
print(char)  # Output: 练

Perl:

my $char = "\x{7EC3}";
print $char;  # Output: 练

PHP:

$char = "\x{7EC3}";
echo $char;  // Output: 练

Ruby:

char = "\u{7EC3}"
puts char  # Output: 练

Rust:

let c = '\u{7EC3}';
println!("{}", c);  // Output: 练

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007EC3";  /* Display: 练 */
}

HTML Decimal:

<p>HTML decimal: &#32451;</p>  <!-- Display: 练 -->

HTML Hexadecimal:

<p>HTML hex: &#x7EC3;</p>  <!-- Display: 练 -->

URL Encoding:

// 练 URL encoding
https://unicodefinder.com/search.php?query=%E7%BB%83

Encodings

MD5:

8815cb52369c35c4b41fd4d75eb24bc4

SHA1:

70bcf691e18fe2efe1320197910fa74139c2eccb

Base64:

57uD