Unicode Finder

"打" U+6253(CJK UNIFIED IDEOGRAPH-6253)

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

Programming

C
\u6253
JavaScript
\u6253
Java
\u6253
Json
\u6253
Python
\u6253
Perl
\x{6253}
PHP
\x{6253}
Ruby
\u{6253}
Rust
\u{6253}
Go
\u6253

Web

CSS
\006253
HtmlDecimal
打
HtmlHexadecimal
打
Url
%E6%89%93

Code

MD5
0e1ceeea4671010ed3125100bd726293
Sha1
6919d5be906e36aa9b9bd5593f3720aca1084eec
Base64
5omT

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6253';
console.log(char);  // Output: 打

Java:

char c = '\u6253';
System.out.println(c);  // Output: 打

JSON:

{"text": "\u6253"}  // Value: 打

Python:

char = '\u6253'
print(char)  # Output: 打

Perl:

my $char = "\x{6253}";
print $char;  # Output: 打

PHP:

$char = "\x{6253}";
echo $char;  // Output: 打

Ruby:

char = "\u{6253}"
puts char  # Output: 打

Rust:

let c = '\u{6253}';
println!("{}", c);  // Output: 打

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006253";  /* Display: 打 */
}

HTML Decimal:

<p>HTML decimal: &#25171;</p>  <!-- Display: 打 -->

HTML Hexadecimal:

<p>HTML hex: &#x6253;</p>  <!-- Display: 打 -->

URL Encoding:

// 打 URL encoding
https://unicodefinder.com/search.php?query=%E6%89%93

Encodings

MD5:

0e1ceeea4671010ed3125100bd726293

SHA1:

6919d5be906e36aa9b9bd5593f3720aca1084eec

Base64:

5omT