Unicode Finder

"煢" U+7162(CJK UNIFIED IDEOGRAPH-7162)

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

Programming

C
\u7162
JavaScript
\u7162
Java
\u7162
Json
\u7162
Python
\u7162
Perl
\x{7162}
PHP
\x{7162}
Ruby
\u{7162}
Rust
\u{7162}
Go
\u7162

Web

CSS
\007162
HtmlDecimal
煢
HtmlHexadecimal
煢
Url
%E7%85%A2

Code

MD5
f01f5ae2df5b53aab46876282e18a7e9
Sha1
72f577b3a1cd6a0fb66c969fe71b4ca944706bea
Base64
54Wi

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7162';
console.log(char);  // Output: 煢

Java:

char c = '\u7162';
System.out.println(c);  // Output: 煢

JSON:

{"text": "\u7162"}  // Value: 煢

Python:

char = '\u7162'
print(char)  # Output: 煢

Perl:

my $char = "\x{7162}";
print $char;  # Output: 煢

PHP:

$char = "\x{7162}";
echo $char;  // Output: 煢

Ruby:

char = "\u{7162}"
puts char  # Output: 煢

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007162";  /* Display: 煢 */
}

HTML Decimal:

<p>HTML decimal: &#29026;</p>  <!-- Display: 煢 -->

HTML Hexadecimal:

<p>HTML hex: &#x7162;</p>  <!-- Display: 煢 -->

URL Encoding:

// 煢 URL encoding
https://unicodefinder.com/search.php?query=%E7%85%A2

Encodings

MD5:

f01f5ae2df5b53aab46876282e18a7e9

SHA1:

72f577b3a1cd6a0fb66c969fe71b4ca944706bea

Base64:

54Wi