Unicode Finder

"焠" U+7120(CJK UNIFIED IDEOGRAPH-7120)

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

Programming

C
\u7120
JavaScript
\u7120
Java
\u7120
Json
\u7120
Python
\u7120
Perl
\x{7120}
PHP
\x{7120}
Ruby
\u{7120}
Rust
\u{7120}
Go
\u7120

Web

CSS
\007120
HtmlDecimal
焠
HtmlHexadecimal
焠
Url
%E7%84%A0

Code

MD5
2c279e23e297b37cd70597af7f8393b4
Sha1
3a9a3e6c62d70274d2e653dc0bad017a62f04bee
Base64
54Sg

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7120';
console.log(char);  // Output: 焠

Java:

char c = '\u7120';
System.out.println(c);  // Output: 焠

JSON:

{"text": "\u7120"}  // Value: 焠

Python:

char = '\u7120'
print(char)  # Output: 焠

Perl:

my $char = "\x{7120}";
print $char;  # Output: 焠

PHP:

$char = "\x{7120}";
echo $char;  // Output: 焠

Ruby:

char = "\u{7120}"
puts char  # Output: 焠

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007120";  /* Display: 焠 */
}

HTML Decimal:

<p>HTML decimal: &#28960;</p>  <!-- Display: 焠 -->

HTML Hexadecimal:

<p>HTML hex: &#x7120;</p>  <!-- Display: 焠 -->

URL Encoding:

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

Encodings

MD5:

2c279e23e297b37cd70597af7f8393b4

SHA1:

3a9a3e6c62d70274d2e653dc0bad017a62f04bee

Base64:

54Sg