Unicode Finder

"爠" U+7220(CJK UNIFIED IDEOGRAPH-7220)

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

Programming

C
\u7220
JavaScript
\u7220
Java
\u7220
Json
\u7220
Python
\u7220
Perl
\x{7220}
PHP
\x{7220}
Ruby
\u{7220}
Rust
\u{7220}
Go
\u7220

Web

CSS
\007220
HtmlDecimal
爠
HtmlHexadecimal
爠
Url
%E7%88%A0

Code

MD5
a905ee97e91d4cae3ca40237572d3f2e
Sha1
d25fca4e6df599b05ae03cadb36f6758f4f79cf8
Base64
54ig

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7220';
console.log(char);  // Output: 爠

Java:

char c = '\u7220';
System.out.println(c);  // Output: 爠

JSON:

{"text": "\u7220"}  // Value: 爠

Python:

char = '\u7220'
print(char)  # Output: 爠

Perl:

my $char = "\x{7220}";
print $char;  # Output: 爠

PHP:

$char = "\x{7220}";
echo $char;  // Output: 爠

Ruby:

char = "\u{7220}"
puts char  # Output: 爠

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007220";  /* Display: 爠 */
}

HTML Decimal:

<p>HTML decimal: &#29216;</p>  <!-- Display: 爠 -->

HTML Hexadecimal:

<p>HTML hex: &#x7220;</p>  <!-- Display: 爠 -->

URL Encoding:

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

Encodings

MD5:

a905ee97e91d4cae3ca40237572d3f2e

SHA1:

d25fca4e6df599b05ae03cadb36f6758f4f79cf8

Base64:

54ig