Unicode Finder

"熗" U+7197(CJK UNIFIED IDEOGRAPH-7197)

U+7197
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-7197

Programming

C
\u7197
JavaScript
\u7197
Java
\u7197
Json
\u7197
Python
\u7197
Perl
\x{7197}
PHP
\x{7197}
Ruby
\u{7197}
Rust
\u{7197}
Go
\u7197

Web

CSS
\007197
HtmlDecimal
熗
HtmlHexadecimal
熗
Url
%E7%86%97

Code

MD5
065aead601f01f7fa72729b7b6a13968
Sha1
3cd2ea1410209d1e9817e409556cc589b6858c1b
Base64
54aX

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7197';
console.log(char);  // Output: 熗

Java:

char c = '\u7197';
System.out.println(c);  // Output: 熗

JSON:

{"text": "\u7197"}  // Value: 熗

Python:

char = '\u7197'
print(char)  # Output: 熗

Perl:

my $char = "\x{7197}";
print $char;  # Output: 熗

PHP:

$char = "\x{7197}";
echo $char;  // Output: 熗

Ruby:

char = "\u{7197}"
puts char  # Output: 熗

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007197";  /* Display: 熗 */
}

HTML Decimal:

<p>HTML decimal: &#29079;</p>  <!-- Display: 熗 -->

HTML Hexadecimal:

<p>HTML hex: &#x7197;</p>  <!-- Display: 熗 -->

URL Encoding:

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

Encodings

MD5:

065aead601f01f7fa72729b7b6a13968

SHA1:

3cd2ea1410209d1e9817e409556cc589b6858c1b

Base64:

54aX