Unicode Finder

"皒" U+7692(CJK UNIFIED IDEOGRAPH-7692)

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

Programming

C
\u7692
JavaScript
\u7692
Java
\u7692
Json
\u7692
Python
\u7692
Perl
\x{7692}
PHP
\x{7692}
Ruby
\u{7692}
Rust
\u{7692}
Go
\u7692

Web

CSS
\007692
HtmlDecimal
皒
HtmlHexadecimal
皒
Url
%E7%9A%92

Code

MD5
093e8b76072383d07d8067fb4d6a5f9c
Sha1
170dae17ece26d9d24b4c0270d4122a1fcf2982f
Base64
55qS

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7692';
console.log(char);  // Output: 皒

Java:

char c = '\u7692';
System.out.println(c);  // Output: 皒

JSON:

{"text": "\u7692"}  // Value: 皒

Python:

char = '\u7692'
print(char)  # Output: 皒

Perl:

my $char = "\x{7692}";
print $char;  # Output: 皒

PHP:

$char = "\x{7692}";
echo $char;  // Output: 皒

Ruby:

char = "\u{7692}"
puts char  # Output: 皒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007692";  /* Display: 皒 */
}

HTML Decimal:

<p>HTML decimal: &#30354;</p>  <!-- Display: 皒 -->

HTML Hexadecimal:

<p>HTML hex: &#x7692;</p>  <!-- Display: 皒 -->

URL Encoding:

// 皒 URL encoding
https://unicodefinder.com/search.php?query=%E7%9A%92

Encodings

MD5:

093e8b76072383d07d8067fb4d6a5f9c

SHA1:

170dae17ece26d9d24b4c0270d4122a1fcf2982f

Base64:

55qS