Unicode Finder

"爤" U+7224(CJK UNIFIED IDEOGRAPH-7224)

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

Programming

C
\u7224
JavaScript
\u7224
Java
\u7224
Json
\u7224
Python
\u7224
Perl
\x{7224}
PHP
\x{7224}
Ruby
\u{7224}
Rust
\u{7224}
Go
\u7224

Web

CSS
\007224
HtmlDecimal
爤
HtmlHexadecimal
爤
Url
%E7%88%A4

Code

MD5
cf6f11653d9e2ff0456801eccedbad41
Sha1
7f320bb4995c7814a7f35a5b6d1449ea4bdf385e
Base64
54ik

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7224';
console.log(char);  // Output: 爤

Java:

char c = '\u7224';
System.out.println(c);  // Output: 爤

JSON:

{"text": "\u7224"}  // Value: 爤

Python:

char = '\u7224'
print(char)  # Output: 爤

Perl:

my $char = "\x{7224}";
print $char;  # Output: 爤

PHP:

$char = "\x{7224}";
echo $char;  // Output: 爤

Ruby:

char = "\u{7224}"
puts char  # Output: 爤

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007224";  /* Display: 爤 */
}

HTML Decimal:

<p>HTML decimal: &#29220;</p>  <!-- Display: 爤 -->

HTML Hexadecimal:

<p>HTML hex: &#x7224;</p>  <!-- Display: 爤 -->

URL Encoding:

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

Encodings

MD5:

cf6f11653d9e2ff0456801eccedbad41

SHA1:

7f320bb4995c7814a7f35a5b6d1449ea4bdf385e

Base64:

54ik