Unicode Finder

"爄" U+7204(CJK UNIFIED IDEOGRAPH-7204)

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

Programming

C
\u7204
JavaScript
\u7204
Java
\u7204
Json
\u7204
Python
\u7204
Perl
\x{7204}
PHP
\x{7204}
Ruby
\u{7204}
Rust
\u{7204}
Go
\u7204

Web

CSS
\007204
HtmlDecimal
爄
HtmlHexadecimal
爄
Url
%E7%88%84

Code

MD5
279eb3e8d9db57e128205f691c61e92f
Sha1
af254e449a59d18d9c26ec7357819c75dcb1d62f
Base64
54iE

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7204';
console.log(char);  // Output: 爄

Java:

char c = '\u7204';
System.out.println(c);  // Output: 爄

JSON:

{"text": "\u7204"}  // Value: 爄

Python:

char = '\u7204'
print(char)  # Output: 爄

Perl:

my $char = "\x{7204}";
print $char;  # Output: 爄

PHP:

$char = "\x{7204}";
echo $char;  // Output: 爄

Ruby:

char = "\u{7204}"
puts char  # Output: 爄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007204";  /* Display: 爄 */
}

HTML Decimal:

<p>HTML decimal: &#29188;</p>  <!-- Display: 爄 -->

HTML Hexadecimal:

<p>HTML hex: &#x7204;</p>  <!-- Display: 爄 -->

URL Encoding:

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

Encodings

MD5:

279eb3e8d9db57e128205f691c61e92f

SHA1:

af254e449a59d18d9c26ec7357819c75dcb1d62f

Base64:

54iE