Unicode Finder

"焀" U+7100(CJK UNIFIED IDEOGRAPH-7100)

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

Programming

C
\u7100
JavaScript
\u7100
Java
\u7100
Json
\u7100
Python
\u7100
Perl
\x{7100}
PHP
\x{7100}
Ruby
\u{7100}
Rust
\u{7100}
Go
\u7100

Web

CSS
\007100
HtmlDecimal
焀
HtmlHexadecimal
焀
Url
%E7%84%80

Code

MD5
d97d9a4caaefe4320c8d2c19d79a7a17
Sha1
1652abebb75e6263246fc23a5a41eb9b32c2f352
Base64
54SA

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7100';
console.log(char);  // Output: 焀

Java:

char c = '\u7100';
System.out.println(c);  // Output: 焀

JSON:

{"text": "\u7100"}  // Value: 焀

Python:

char = '\u7100'
print(char)  # Output: 焀

Perl:

my $char = "\x{7100}";
print $char;  # Output: 焀

PHP:

$char = "\x{7100}";
echo $char;  // Output: 焀

Ruby:

char = "\u{7100}"
puts char  # Output: 焀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007100";  /* Display: 焀 */
}

HTML Decimal:

<p>HTML decimal: &#28928;</p>  <!-- Display: 焀 -->

HTML Hexadecimal:

<p>HTML hex: &#x7100;</p>  <!-- Display: 焀 -->

URL Encoding:

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

Encodings

MD5:

d97d9a4caaefe4320c8d2c19d79a7a17

SHA1:

1652abebb75e6263246fc23a5a41eb9b32c2f352

Base64:

54SA