Unicode Finder

"舂" U+8202(CJK UNIFIED IDEOGRAPH-8202)

U+8202
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-8202

Programming

C
\u8202
JavaScript
\u8202
Java
\u8202
Json
\u8202
Python
\u8202
Perl
\x{8202}
PHP
\x{8202}
Ruby
\u{8202}
Rust
\u{8202}
Go
\u8202

Web

CSS
\008202
HtmlDecimal
舂
HtmlHexadecimal
舂
Url
%E8%88%82

Code

MD5
d3dedc73b9e22f9dce5c17dc37028781
Sha1
32a95415b226d1f0f2e038ad680fa56b011e8431
Base64
6IiC

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8202';
console.log(char);  // Output: 舂

Java:

char c = '\u8202';
System.out.println(c);  // Output: 舂

JSON:

{"text": "\u8202"}  // Value: 舂

Python:

char = '\u8202'
print(char)  # Output: 舂

Perl:

my $char = "\x{8202}";
print $char;  # Output: 舂

PHP:

$char = "\x{8202}";
echo $char;  // Output: 舂

Ruby:

char = "\u{8202}"
puts char  # Output: 舂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008202";  /* Display: 舂 */
}

HTML Decimal:

<p>HTML decimal: &#33282;</p>  <!-- Display: 舂 -->

HTML Hexadecimal:

<p>HTML hex: &#x8202;</p>  <!-- Display: 舂 -->

URL Encoding:

// 舂 URL encoding
https://unicodefinder.com/search.php?query=%E8%88%82

Encodings

MD5:

d3dedc73b9e22f9dce5c17dc37028781

SHA1:

32a95415b226d1f0f2e038ad680fa56b011e8431

Base64:

6IiC