Unicode Finder

"熖" U+7196(CJK UNIFIED IDEOGRAPH-7196)

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

Programming

C
\u7196
JavaScript
\u7196
Java
\u7196
Json
\u7196
Python
\u7196
Perl
\x{7196}
PHP
\x{7196}
Ruby
\u{7196}
Rust
\u{7196}
Go
\u7196

Web

CSS
\007196
HtmlDecimal
熖
HtmlHexadecimal
熖
Url
%E7%86%96

Code

MD5
793dcd95fbd0eb5cf423992ce6725aac
Sha1
4ee75806e114b72cc91884ba1a5e53b948eb80e2
Base64
54aW

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7196';
console.log(char);  // Output: 熖

Java:

char c = '\u7196';
System.out.println(c);  // Output: 熖

JSON:

{"text": "\u7196"}  // Value: 熖

Python:

char = '\u7196'
print(char)  # Output: 熖

Perl:

my $char = "\x{7196}";
print $char;  # Output: 熖

PHP:

$char = "\x{7196}";
echo $char;  // Output: 熖

Ruby:

char = "\u{7196}"
puts char  # Output: 熖

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007196";  /* Display: 熖 */
}

HTML Decimal:

<p>HTML decimal: &#29078;</p>  <!-- Display: 熖 -->

HTML Hexadecimal:

<p>HTML hex: &#x7196;</p>  <!-- Display: 熖 -->

URL Encoding:

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

Encodings

MD5:

793dcd95fbd0eb5cf423992ce6725aac

SHA1:

4ee75806e114b72cc91884ba1a5e53b948eb80e2

Base64:

54aW