Unicode Finder

"熙" U+7199(CJK UNIFIED IDEOGRAPH-7199)

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

Programming

C
\u7199
JavaScript
\u7199
Java
\u7199
Json
\u7199
Python
\u7199
Perl
\x{7199}
PHP
\x{7199}
Ruby
\u{7199}
Rust
\u{7199}
Go
\u7199

Web

CSS
\007199
HtmlDecimal
熙
HtmlHexadecimal
熙
Url
%E7%86%99

Code

MD5
25ed409f1d7efbae5a770555501cc146
Sha1
39009a453c423b653fe53b5d12f39ce86dff551e
Base64
54aZ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7199';
console.log(char);  // Output: 熙

Java:

char c = '\u7199';
System.out.println(c);  // Output: 熙

JSON:

{"text": "\u7199"}  // Value: 熙

Python:

char = '\u7199'
print(char)  # Output: 熙

Perl:

my $char = "\x{7199}";
print $char;  # Output: 熙

PHP:

$char = "\x{7199}";
echo $char;  // Output: 熙

Ruby:

char = "\u{7199}"
puts char  # Output: 熙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007199";  /* Display: 熙 */
}

HTML Decimal:

<p>HTML decimal: &#29081;</p>  <!-- Display: 熙 -->

HTML Hexadecimal:

<p>HTML hex: &#x7199;</p>  <!-- Display: 熙 -->

URL Encoding:

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

Encodings

MD5:

25ed409f1d7efbae5a770555501cc146

SHA1:

39009a453c423b653fe53b5d12f39ce86dff551e

Base64:

54aZ