Unicode Finder

"纎" U+7E8E(CJK UNIFIED IDEOGRAPH-7E8E)

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

Programming

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

Web

CSS
\007E8E
HtmlDecimal
纎
HtmlHexadecimal
纎
Url
%E7%BA%8E

Code

MD5
69ca07eb10405b6a578008fbf876d15e
Sha1
48a38c6867ca41bf43ed556e64b61c16d7336fdd
Base64
57qO

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7E8E';
console.log(char);  // Output: 纎

Java:

char c = '\u7E8E';
System.out.println(c);  // Output: 纎

JSON:

{"text": "\u7E8E"}  // Value: 纎

Python:

char = '\u7E8E'
print(char)  # Output: 纎

Perl:

my $char = "\x{7E8E}";
print $char;  # Output: 纎

PHP:

$char = "\x{7E8E}";
echo $char;  // Output: 纎

Ruby:

char = "\u{7E8E}"
puts char  # Output: 纎

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32398;</p>  <!-- Display: 纎 -->

HTML Hexadecimal:

<p>HTML hex: &#x7E8E;</p>  <!-- Display: 纎 -->

URL Encoding:

// 纎 URL encoding
https://unicodefinder.com/search.php?query=%E7%BA%8E

Encodings

MD5:

69ca07eb10405b6a578008fbf876d15e

SHA1:

48a38c6867ca41bf43ed556e64b61c16d7336fdd

Base64:

57qO