Unicode Finder

"焣" U+7123(CJK UNIFIED IDEOGRAPH-7123)

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

Programming

C
\u7123
JavaScript
\u7123
Java
\u7123
Json
\u7123
Python
\u7123
Perl
\x{7123}
PHP
\x{7123}
Ruby
\u{7123}
Rust
\u{7123}
Go
\u7123

Web

CSS
\007123
HtmlDecimal
焣
HtmlHexadecimal
焣
Url
%E7%84%A3

Code

MD5
0e5ca8abf0be79662d60d8a8d581d71d
Sha1
d15dae1b0feefc1d7f2d2416a386564c0545391a
Base64
54Sj

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7123';
console.log(char);  // Output: 焣

Java:

char c = '\u7123';
System.out.println(c);  // Output: 焣

JSON:

{"text": "\u7123"}  // Value: 焣

Python:

char = '\u7123'
print(char)  # Output: 焣

Perl:

my $char = "\x{7123}";
print $char;  # Output: 焣

PHP:

$char = "\x{7123}";
echo $char;  // Output: 焣

Ruby:

char = "\u{7123}"
puts char  # Output: 焣

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007123";  /* Display: 焣 */
}

HTML Decimal:

<p>HTML decimal: &#28963;</p>  <!-- Display: 焣 -->

HTML Hexadecimal:

<p>HTML hex: &#x7123;</p>  <!-- Display: 焣 -->

URL Encoding:

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

Encodings

MD5:

0e5ca8abf0be79662d60d8a8d581d71d

SHA1:

d15dae1b0feefc1d7f2d2416a386564c0545391a

Base64:

54Sj