Unicode Finder

"熂" U+7182(CJK UNIFIED IDEOGRAPH-7182)

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

Programming

C
\u7182
JavaScript
\u7182
Java
\u7182
Json
\u7182
Python
\u7182
Perl
\x{7182}
PHP
\x{7182}
Ruby
\u{7182}
Rust
\u{7182}
Go
\u7182

Web

CSS
\007182
HtmlDecimal
熂
HtmlHexadecimal
熂
Url
%E7%86%82

Code

MD5
819dc3cd65c5d61208c2867476e05a42
Sha1
b242569fe087b4d57ef505c1c15ddcd215106bc7
Base64
54aC

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7182';
console.log(char);  // Output: 熂

Java:

char c = '\u7182';
System.out.println(c);  // Output: 熂

JSON:

{"text": "\u7182"}  // Value: 熂

Python:

char = '\u7182'
print(char)  # Output: 熂

Perl:

my $char = "\x{7182}";
print $char;  # Output: 熂

PHP:

$char = "\x{7182}";
echo $char;  // Output: 熂

Ruby:

char = "\u{7182}"
puts char  # Output: 熂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007182";  /* Display: 熂 */
}

HTML Decimal:

<p>HTML decimal: &#29058;</p>  <!-- Display: 熂 -->

HTML Hexadecimal:

<p>HTML hex: &#x7182;</p>  <!-- Display: 熂 -->

URL Encoding:

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

Encodings

MD5:

819dc3cd65c5d61208c2867476e05a42

SHA1:

b242569fe087b4d57ef505c1c15ddcd215106bc7

Base64:

54aC