Unicode Finder

"爂" U+7202(CJK UNIFIED IDEOGRAPH-7202)

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

Programming

C
\u7202
JavaScript
\u7202
Java
\u7202
Json
\u7202
Python
\u7202
Perl
\x{7202}
PHP
\x{7202}
Ruby
\u{7202}
Rust
\u{7202}
Go
\u7202

Web

CSS
\007202
HtmlDecimal
爂
HtmlHexadecimal
爂
Url
%E7%88%82

Code

MD5
4b5c883c4be86e498e644af29b631140
Sha1
aa613e9ac35bac6f487d312307dc95830c9e4b8a
Base64
54iC

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7202';
console.log(char);  // Output: 爂

Java:

char c = '\u7202';
System.out.println(c);  // Output: 爂

JSON:

{"text": "\u7202"}  // Value: 爂

Python:

char = '\u7202'
print(char)  # Output: 爂

Perl:

my $char = "\x{7202}";
print $char;  # Output: 爂

PHP:

$char = "\x{7202}";
echo $char;  // Output: 爂

Ruby:

char = "\u{7202}"
puts char  # Output: 爂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007202";  /* Display: 爂 */
}

HTML Decimal:

<p>HTML decimal: &#29186;</p>  <!-- Display: 爂 -->

HTML Hexadecimal:

<p>HTML hex: &#x7202;</p>  <!-- Display: 爂 -->

URL Encoding:

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

Encodings

MD5:

4b5c883c4be86e498e644af29b631140

SHA1:

aa613e9ac35bac6f487d312307dc95830c9e4b8a

Base64:

54iC