Unicode Finder

"晒" U+6652(CJK UNIFIED IDEOGRAPH-6652)

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

Programming

C
\u6652
JavaScript
\u6652
Java
\u6652
Json
\u6652
Python
\u6652
Perl
\x{6652}
PHP
\x{6652}
Ruby
\u{6652}
Rust
\u{6652}
Go
\u6652

Web

CSS
\006652
HtmlDecimal
晒
HtmlHexadecimal
晒
Url
%E6%99%92

Code

MD5
9b643f3df3cc18bf7b9e9175a032182b
Sha1
1831f567e5c6a2763be469630500534ad517493f
Base64
5pmS

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6652';
console.log(char);  // Output: 晒

Java:

char c = '\u6652';
System.out.println(c);  // Output: 晒

JSON:

{"text": "\u6652"}  // Value: 晒

Python:

char = '\u6652'
print(char)  # Output: 晒

Perl:

my $char = "\x{6652}";
print $char;  # Output: 晒

PHP:

$char = "\x{6652}";
echo $char;  // Output: 晒

Ruby:

char = "\u{6652}"
puts char  # Output: 晒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006652";  /* Display: 晒 */
}

HTML Decimal:

<p>HTML decimal: &#26194;</p>  <!-- Display: 晒 -->

HTML Hexadecimal:

<p>HTML hex: &#x6652;</p>  <!-- Display: 晒 -->

URL Encoding:

// 晒 URL encoding
https://unicodefinder.com/search.php?query=%E6%99%92

Encodings

MD5:

9b643f3df3cc18bf7b9e9175a032182b

SHA1:

1831f567e5c6a2763be469630500534ad517493f

Base64:

5pmS