Unicode Finder

"纒" U+7E92(CJK UNIFIED IDEOGRAPH-7E92)

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

Programming

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

Web

CSS
\007E92
HtmlDecimal
纒
HtmlHexadecimal
纒
Url
%E7%BA%92

Code

MD5
a53b293f500732902440d993e65dbcc0
Sha1
80076c2f6b26e624bb8f0a2d9d1993c16b189a2b
Base64
57qS

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7E92';
console.log(char);  // Output: 纒

Java:

char c = '\u7E92';
System.out.println(c);  // Output: 纒

JSON:

{"text": "\u7E92"}  // Value: 纒

Python:

char = '\u7E92'
print(char)  # Output: 纒

Perl:

my $char = "\x{7E92}";
print $char;  # Output: 纒

PHP:

$char = "\x{7E92}";
echo $char;  // Output: 纒

Ruby:

char = "\u{7E92}"
puts char  # Output: 纒

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32402;</p>  <!-- Display: 纒 -->

HTML Hexadecimal:

<p>HTML hex: &#x7E92;</p>  <!-- Display: 纒 -->

URL Encoding:

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

Encodings

MD5:

a53b293f500732902440d993e65dbcc0

SHA1:

80076c2f6b26e624bb8f0a2d9d1993c16b189a2b

Base64:

57qS