Unicode Finder

"煗" U+7157(CJK UNIFIED IDEOGRAPH-7157)

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

Programming

C
\u7157
JavaScript
\u7157
Java
\u7157
Json
\u7157
Python
\u7157
Perl
\x{7157}
PHP
\x{7157}
Ruby
\u{7157}
Rust
\u{7157}
Go
\u7157

Web

CSS
\007157
HtmlDecimal
煗
HtmlHexadecimal
煗
Url
%E7%85%97

Code

MD5
7e3317bb8c5aa9a00124492d2a1976b8
Sha1
4f5962ff2380a20ec4ffdb716a7a540145da06a2
Base64
54WX

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7157';
console.log(char);  // Output: 煗

Java:

char c = '\u7157';
System.out.println(c);  // Output: 煗

JSON:

{"text": "\u7157"}  // Value: 煗

Python:

char = '\u7157'
print(char)  # Output: 煗

Perl:

my $char = "\x{7157}";
print $char;  # Output: 煗

PHP:

$char = "\x{7157}";
echo $char;  // Output: 煗

Ruby:

char = "\u{7157}"
puts char  # Output: 煗

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007157";  /* Display: 煗 */
}

HTML Decimal:

<p>HTML decimal: &#29015;</p>  <!-- Display: 煗 -->

HTML Hexadecimal:

<p>HTML hex: &#x7157;</p>  <!-- Display: 煗 -->

URL Encoding:

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

Encodings

MD5:

7e3317bb8c5aa9a00124492d2a1976b8

SHA1:

4f5962ff2380a20ec4ffdb716a7a540145da06a2

Base64:

54WX