Unicode Finder

"纷" U+7EB7(CJK UNIFIED IDEOGRAPH-7EB7)

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

Programming

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

Web

CSS
\007EB7
HtmlDecimal
纷
HtmlHexadecimal
纷
Url
%E7%BA%B7

Code

MD5
a456602a2c506db6fb9073159e7a32e7
Sha1
897371843c317594a8428b710f68b8c056de3bf0
Base64
57q3

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7EB7';
console.log(char);  // Output: 纷

Java:

char c = '\u7EB7';
System.out.println(c);  // Output: 纷

JSON:

{"text": "\u7EB7"}  // Value: 纷

Python:

char = '\u7EB7'
print(char)  # Output: 纷

Perl:

my $char = "\x{7EB7}";
print $char;  # Output: 纷

PHP:

$char = "\x{7EB7}";
echo $char;  // Output: 纷

Ruby:

char = "\u{7EB7}"
puts char  # Output: 纷

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32439;</p>  <!-- Display: 纷 -->

HTML Hexadecimal:

<p>HTML hex: &#x7EB7;</p>  <!-- Display: 纷 -->

URL Encoding:

// 纷 URL encoding
https://unicodefinder.com/search.php?query=%E7%BA%B7

Encodings

MD5:

a456602a2c506db6fb9073159e7a32e7

SHA1:

897371843c317594a8428b710f68b8c056de3bf0

Base64:

57q3