Unicode Finder

"扇" U+6247(CJK UNIFIED IDEOGRAPH-6247)

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

Programming

C
\u6247
JavaScript
\u6247
Java
\u6247
Json
\u6247
Python
\u6247
Perl
\x{6247}
PHP
\x{6247}
Ruby
\u{6247}
Rust
\u{6247}
Go
\u6247

Web

CSS
\006247
HtmlDecimal
扇
HtmlHexadecimal
扇
Url
%E6%89%87

Code

MD5
185a93f26d944baa49aff83202feae5e
Sha1
511ae2ec186ffe811cb1b355c91b49ac77118fe3
Base64
5omH

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6247';
console.log(char);  // Output: 扇

Java:

char c = '\u6247';
System.out.println(c);  // Output: 扇

JSON:

{"text": "\u6247"}  // Value: 扇

Python:

char = '\u6247'
print(char)  # Output: 扇

Perl:

my $char = "\x{6247}";
print $char;  # Output: 扇

PHP:

$char = "\x{6247}";
echo $char;  // Output: 扇

Ruby:

char = "\u{6247}"
puts char  # Output: 扇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006247";  /* Display: 扇 */
}

HTML Decimal:

<p>HTML decimal: &#25159;</p>  <!-- Display: 扇 -->

HTML Hexadecimal:

<p>HTML hex: &#x6247;</p>  <!-- Display: 扇 -->

URL Encoding:

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

Encodings

MD5:

185a93f26d944baa49aff83202feae5e

SHA1:

511ae2ec186ffe811cb1b355c91b49ac77118fe3

Base64:

5omH