Unicode Finder

"皀" U+7680(CJK UNIFIED IDEOGRAPH-7680)

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

Programming

C
\u7680
JavaScript
\u7680
Java
\u7680
Json
\u7680
Python
\u7680
Perl
\x{7680}
PHP
\x{7680}
Ruby
\u{7680}
Rust
\u{7680}
Go
\u7680

Web

CSS
\007680
HtmlDecimal
皀
HtmlHexadecimal
皀
Url
%E7%9A%80

Code

MD5
c9ffa127ab90f50388c476abcfeb10f6
Sha1
b28929a9dba35d31e4064e162110bb3c1bd519e0
Base64
55qA

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7680';
console.log(char);  // Output: 皀

Java:

char c = '\u7680';
System.out.println(c);  // Output: 皀

JSON:

{"text": "\u7680"}  // Value: 皀

Python:

char = '\u7680'
print(char)  # Output: 皀

Perl:

my $char = "\x{7680}";
print $char;  # Output: 皀

PHP:

$char = "\x{7680}";
echo $char;  // Output: 皀

Ruby:

char = "\u{7680}"
puts char  # Output: 皀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007680";  /* Display: 皀 */
}

HTML Decimal:

<p>HTML decimal: &#30336;</p>  <!-- Display: 皀 -->

HTML Hexadecimal:

<p>HTML hex: &#x7680;</p>  <!-- Display: 皀 -->

URL Encoding:

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

Encodings

MD5:

c9ffa127ab90f50388c476abcfeb10f6

SHA1:

b28929a9dba35d31e4064e162110bb3c1bd519e0

Base64:

55qA