Unicode Finder

"熐" U+7190(CJK UNIFIED IDEOGRAPH-7190)

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

Programming

C
\u7190
JavaScript
\u7190
Java
\u7190
Json
\u7190
Python
\u7190
Perl
\x{7190}
PHP
\x{7190}
Ruby
\u{7190}
Rust
\u{7190}
Go
\u7190

Web

CSS
\007190
HtmlDecimal
熐
HtmlHexadecimal
熐
Url
%E7%86%90

Code

MD5
13c0007e859eaa48bd999454e906b089
Sha1
7d18b18a4c3ffdb9e9f7922beb9dc7b1a11fd1b8
Base64
54aQ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7190';
console.log(char);  // Output: 熐

Java:

char c = '\u7190';
System.out.println(c);  // Output: 熐

JSON:

{"text": "\u7190"}  // Value: 熐

Python:

char = '\u7190'
print(char)  # Output: 熐

Perl:

my $char = "\x{7190}";
print $char;  # Output: 熐

PHP:

$char = "\x{7190}";
echo $char;  // Output: 熐

Ruby:

char = "\u{7190}"
puts char  # Output: 熐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007190";  /* Display: 熐 */
}

HTML Decimal:

<p>HTML decimal: &#29072;</p>  <!-- Display: 熐 -->

HTML Hexadecimal:

<p>HTML hex: &#x7190;</p>  <!-- Display: 熐 -->

URL Encoding:

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

Encodings

MD5:

13c0007e859eaa48bd999454e906b089

SHA1:

7d18b18a4c3ffdb9e9f7922beb9dc7b1a11fd1b8

Base64:

54aQ