Unicode Finder

"皅" U+7685(CJK UNIFIED IDEOGRAPH-7685)

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

Programming

C
\u7685
JavaScript
\u7685
Java
\u7685
Json
\u7685
Python
\u7685
Perl
\x{7685}
PHP
\x{7685}
Ruby
\u{7685}
Rust
\u{7685}
Go
\u7685

Web

CSS
\007685
HtmlDecimal
皅
HtmlHexadecimal
皅
Url
%E7%9A%85

Code

MD5
bb3a49c8b4ef40d09c261e4d3d76f9e5
Sha1
7689c561948670dbcaff373f79ddc1dd85637077
Base64
55qF

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7685';
console.log(char);  // Output: 皅

Java:

char c = '\u7685';
System.out.println(c);  // Output: 皅

JSON:

{"text": "\u7685"}  // Value: 皅

Python:

char = '\u7685'
print(char)  # Output: 皅

Perl:

my $char = "\x{7685}";
print $char;  # Output: 皅

PHP:

$char = "\x{7685}";
echo $char;  // Output: 皅

Ruby:

char = "\u{7685}"
puts char  # Output: 皅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007685";  /* Display: 皅 */
}

HTML Decimal:

<p>HTML decimal: &#30341;</p>  <!-- Display: 皅 -->

HTML Hexadecimal:

<p>HTML hex: &#x7685;</p>  <!-- Display: 皅 -->

URL Encoding:

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

Encodings

MD5:

bb3a49c8b4ef40d09c261e4d3d76f9e5

SHA1:

7689c561948670dbcaff373f79ddc1dd85637077

Base64:

55qF