Unicode Finder

"扁" U+6241(CJK UNIFIED IDEOGRAPH-6241)

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

Programming

C
\u6241
JavaScript
\u6241
Java
\u6241
Json
\u6241
Python
\u6241
Perl
\x{6241}
PHP
\x{6241}
Ruby
\u{6241}
Rust
\u{6241}
Go
\u6241

Web

CSS
\006241
HtmlDecimal
扁
HtmlHexadecimal
扁
Url
%E6%89%81

Code

MD5
6fdd3a6ce2eb8ee898600472c51c7c0f
Sha1
eca78afa00640fbbc2c6e083de423729a5a4d268
Base64
5omB

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6241';
console.log(char);  // Output: 扁

Java:

char c = '\u6241';
System.out.println(c);  // Output: 扁

JSON:

{"text": "\u6241"}  // Value: 扁

Python:

char = '\u6241'
print(char)  # Output: 扁

Perl:

my $char = "\x{6241}";
print $char;  # Output: 扁

PHP:

$char = "\x{6241}";
echo $char;  // Output: 扁

Ruby:

char = "\u{6241}"
puts char  # Output: 扁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006241";  /* Display: 扁 */
}

HTML Decimal:

<p>HTML decimal: &#25153;</p>  <!-- Display: 扁 -->

HTML Hexadecimal:

<p>HTML hex: &#x6241;</p>  <!-- Display: 扁 -->

URL Encoding:

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

Encodings

MD5:

6fdd3a6ce2eb8ee898600472c51c7c0f

SHA1:

eca78afa00640fbbc2c6e083de423729a5a4d268

Base64:

5omB