Unicode Finder

"爇" U+7207(CJK UNIFIED IDEOGRAPH-7207)

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

Programming

C
\u7207
JavaScript
\u7207
Java
\u7207
Json
\u7207
Python
\u7207
Perl
\x{7207}
PHP
\x{7207}
Ruby
\u{7207}
Rust
\u{7207}
Go
\u7207

Web

CSS
\007207
HtmlDecimal
爇
HtmlHexadecimal
爇
Url
%E7%88%87

Code

MD5
8087bc9df867b635e7de6c47f72bd2a2
Sha1
5808027e001fe3a35b5a81be9c59cec666a0095a
Base64
54iH

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7207';
console.log(char);  // Output: 爇

Java:

char c = '\u7207';
System.out.println(c);  // Output: 爇

JSON:

{"text": "\u7207"}  // Value: 爇

Python:

char = '\u7207'
print(char)  # Output: 爇

Perl:

my $char = "\x{7207}";
print $char;  # Output: 爇

PHP:

$char = "\x{7207}";
echo $char;  // Output: 爇

Ruby:

char = "\u{7207}"
puts char  # Output: 爇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007207";  /* Display: 爇 */
}

HTML Decimal:

<p>HTML decimal: &#29191;</p>  <!-- Display: 爇 -->

HTML Hexadecimal:

<p>HTML hex: &#x7207;</p>  <!-- Display: 爇 -->

URL Encoding:

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

Encodings

MD5:

8087bc9df867b635e7de6c47f72bd2a2

SHA1:

5808027e001fe3a35b5a81be9c59cec666a0095a

Base64:

54iH