Unicode Finder

"绀" U+7EC0(CJK UNIFIED IDEOGRAPH-7EC0)

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

Programming

C
\u7EC0
JavaScript
\u7EC0
Java
\u7EC0
Json
\u7EC0
Python
\u7EC0
Perl
\x{7EC0}
PHP
\x{7EC0}
Ruby
\u{7EC0}
Rust
\u{7EC0}
Go
\u7EC0

Web

CSS
\007EC0
HtmlDecimal
绀
HtmlHexadecimal
绀
Url
%E7%BB%80

Code

MD5
88f1c5e9c0cb75d192c1bcc8361cc1c1
Sha1
36af711354c7d24c000c79741ec548f61edf7456
Base64
57uA

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7EC0';
console.log(char);  // Output: 绀

Java:

char c = '\u7EC0';
System.out.println(c);  // Output: 绀

JSON:

{"text": "\u7EC0"}  // Value: 绀

Python:

char = '\u7EC0'
print(char)  # Output: 绀

Perl:

my $char = "\x{7EC0}";
print $char;  # Output: 绀

PHP:

$char = "\x{7EC0}";
echo $char;  // Output: 绀

Ruby:

char = "\u{7EC0}"
puts char  # Output: 绀

Rust:

let c = '\u{7EC0}';
println!("{}", c);  // Output: 绀

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007EC0";  /* Display: 绀 */
}

HTML Decimal:

<p>HTML decimal: &#32448;</p>  <!-- Display: 绀 -->

HTML Hexadecimal:

<p>HTML hex: &#x7EC0;</p>  <!-- Display: 绀 -->

URL Encoding:

// 绀 URL encoding
https://unicodefinder.com/search.php?query=%E7%BB%80

Encodings

MD5:

88f1c5e9c0cb75d192c1bcc8361cc1c1

SHA1:

36af711354c7d24c000c79741ec548f61edf7456

Base64:

57uA