Unicode Finder

"熇" U+7187(CJK UNIFIED IDEOGRAPH-7187)

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

Programming

C
\u7187
JavaScript
\u7187
Java
\u7187
Json
\u7187
Python
\u7187
Perl
\x{7187}
PHP
\x{7187}
Ruby
\u{7187}
Rust
\u{7187}
Go
\u7187

Web

CSS
\007187
HtmlDecimal
熇
HtmlHexadecimal
熇
Url
%E7%86%87

Code

MD5
c779ba737b32792a74ed809a6ba88282
Sha1
ca0d65adc102f62b2ce3f017e94e7b8368ef9eee
Base64
54aH

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7187';
console.log(char);  // Output: 熇

Java:

char c = '\u7187';
System.out.println(c);  // Output: 熇

JSON:

{"text": "\u7187"}  // Value: 熇

Python:

char = '\u7187'
print(char)  # Output: 熇

Perl:

my $char = "\x{7187}";
print $char;  # Output: 熇

PHP:

$char = "\x{7187}";
echo $char;  // Output: 熇

Ruby:

char = "\u{7187}"
puts char  # Output: 熇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007187";  /* Display: 熇 */
}

HTML Decimal:

<p>HTML decimal: &#29063;</p>  <!-- Display: 熇 -->

HTML Hexadecimal:

<p>HTML hex: &#x7187;</p>  <!-- Display: 熇 -->

URL Encoding:

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

Encodings

MD5:

c779ba737b32792a74ed809a6ba88282

SHA1:

ca0d65adc102f62b2ce3f017e94e7b8368ef9eee

Base64:

54aH