Unicode Finder

"焁" U+7101(CJK UNIFIED IDEOGRAPH-7101)

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

Programming

C
\u7101
JavaScript
\u7101
Java
\u7101
Json
\u7101
Python
\u7101
Perl
\x{7101}
PHP
\x{7101}
Ruby
\u{7101}
Rust
\u{7101}
Go
\u7101

Web

CSS
\007101
HtmlDecimal
焁
HtmlHexadecimal
焁
Url
%E7%84%81

Code

MD5
0bd3aa1d3f8eedf137d374c9714b11c2
Sha1
cda9c21e51843f3b962d1f3c4ec53ee986461591
Base64
54SB

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7101';
console.log(char);  // Output: 焁

Java:

char c = '\u7101';
System.out.println(c);  // Output: 焁

JSON:

{"text": "\u7101"}  // Value: 焁

Python:

char = '\u7101'
print(char)  # Output: 焁

Perl:

my $char = "\x{7101}";
print $char;  # Output: 焁

PHP:

$char = "\x{7101}";
echo $char;  // Output: 焁

Ruby:

char = "\u{7101}"
puts char  # Output: 焁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007101";  /* Display: 焁 */
}

HTML Decimal:

<p>HTML decimal: &#28929;</p>  <!-- Display: 焁 -->

HTML Hexadecimal:

<p>HTML hex: &#x7101;</p>  <!-- Display: 焁 -->

URL Encoding:

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

Encodings

MD5:

0bd3aa1d3f8eedf137d374c9714b11c2

SHA1:

cda9c21e51843f3b962d1f3c4ec53ee986461591

Base64:

54SB