Unicode Finder

"熒" U+7192(CJK UNIFIED IDEOGRAPH-7192)

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

Programming

C
\u7192
JavaScript
\u7192
Java
\u7192
Json
\u7192
Python
\u7192
Perl
\x{7192}
PHP
\x{7192}
Ruby
\u{7192}
Rust
\u{7192}
Go
\u7192

Web

CSS
\007192
HtmlDecimal
熒
HtmlHexadecimal
熒
Url
%E7%86%92

Code

MD5
47cc53a0bfaa2d2d0de9502ae231544a
Sha1
a38ae49f4b1c2d5ddd4bef07f27c9c1c9b9edead
Base64
54aS

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7192';
console.log(char);  // Output: 熒

Java:

char c = '\u7192';
System.out.println(c);  // Output: 熒

JSON:

{"text": "\u7192"}  // Value: 熒

Python:

char = '\u7192'
print(char)  # Output: 熒

Perl:

my $char = "\x{7192}";
print $char;  # Output: 熒

PHP:

$char = "\x{7192}";
echo $char;  // Output: 熒

Ruby:

char = "\u{7192}"
puts char  # Output: 熒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007192";  /* Display: 熒 */
}

HTML Decimal:

<p>HTML decimal: &#29074;</p>  <!-- Display: 熒 -->

HTML Hexadecimal:

<p>HTML hex: &#x7192;</p>  <!-- Display: 熒 -->

URL Encoding:

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

Encodings

MD5:

47cc53a0bfaa2d2d0de9502ae231544a

SHA1:

a38ae49f4b1c2d5ddd4bef07f27c9c1c9b9edead

Base64:

54aS