Unicode Finder

"纇" U+7E87(CJK UNIFIED IDEOGRAPH-7E87)

U+7E87
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-7E87

Programming

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

Web

CSS
\007E87
HtmlDecimal
纇
HtmlHexadecimal
纇
Url
%E7%BA%87

Code

MD5
1a8417a746dab2075fa665af508f3062
Sha1
c4aed84b9727cf2c2c4e0c9c62d38d02c89f3237
Base64
57qH

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7E87';
console.log(char);  // Output: 纇

Java:

char c = '\u7E87';
System.out.println(c);  // Output: 纇

JSON:

{"text": "\u7E87"}  // Value: 纇

Python:

char = '\u7E87'
print(char)  # Output: 纇

Perl:

my $char = "\x{7E87}";
print $char;  # Output: 纇

PHP:

$char = "\x{7E87}";
echo $char;  // Output: 纇

Ruby:

char = "\u{7E87}"
puts char  # Output: 纇

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32391;</p>  <!-- Display: 纇 -->

HTML Hexadecimal:

<p>HTML hex: &#x7E87;</p>  <!-- Display: 纇 -->

URL Encoding:

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

Encodings

MD5:

1a8417a746dab2075fa665af508f3062

SHA1:

c4aed84b9727cf2c2c4e0c9c62d38d02c89f3237

Base64:

57qH