Unicode Finder

"焗" U+7117(CJK UNIFIED IDEOGRAPH-7117)

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

Programming

C
\u7117
JavaScript
\u7117
Java
\u7117
Json
\u7117
Python
\u7117
Perl
\x{7117}
PHP
\x{7117}
Ruby
\u{7117}
Rust
\u{7117}
Go
\u7117

Web

CSS
\007117
HtmlDecimal
焗
HtmlHexadecimal
焗
Url
%E7%84%97

Code

MD5
8a214825840291f18b4322c87f728c36
Sha1
7437b9311deba983e4278df1888221e766579a90
Base64
54SX

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7117';
console.log(char);  // Output: 焗

Java:

char c = '\u7117';
System.out.println(c);  // Output: 焗

JSON:

{"text": "\u7117"}  // Value: 焗

Python:

char = '\u7117'
print(char)  # Output: 焗

Perl:

my $char = "\x{7117}";
print $char;  # Output: 焗

PHP:

$char = "\x{7117}";
echo $char;  // Output: 焗

Ruby:

char = "\u{7117}"
puts char  # Output: 焗

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007117";  /* Display: 焗 */
}

HTML Decimal:

<p>HTML decimal: &#28951;</p>  <!-- Display: 焗 -->

HTML Hexadecimal:

<p>HTML hex: &#x7117;</p>  <!-- Display: 焗 -->

URL Encoding:

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

Encodings

MD5:

8a214825840291f18b4322c87f728c36

SHA1:

7437b9311deba983e4278df1888221e766579a90

Base64:

54SX