Unicode Finder

"纫" U+7EAB(CJK UNIFIED IDEOGRAPH-7EAB)

U+7EAB
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-7EAB

Programming

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

Web

CSS
\007EAB
HtmlDecimal
纫
HtmlHexadecimal
纫
Url
%E7%BA%AB

Code

MD5
43bbc5c8773328b007f29b3cb3ab1b22
Sha1
cc3b746845882cdd3dd570cc4ae28e467615e9ba
Base64
57qr

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7EAB';
console.log(char);  // Output: 纫

Java:

char c = '\u7EAB';
System.out.println(c);  // Output: 纫

JSON:

{"text": "\u7EAB"}  // Value: 纫

Python:

char = '\u7EAB'
print(char)  # Output: 纫

Perl:

my $char = "\x{7EAB}";
print $char;  # Output: 纫

PHP:

$char = "\x{7EAB}";
echo $char;  // Output: 纫

Ruby:

char = "\u{7EAB}"
puts char  # Output: 纫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32427;</p>  <!-- Display: 纫 -->

HTML Hexadecimal:

<p>HTML hex: &#x7EAB;</p>  <!-- Display: 纫 -->

URL Encoding:

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

Encodings

MD5:

43bbc5c8773328b007f29b3cb3ab1b22

SHA1:

cc3b746845882cdd3dd570cc4ae28e467615e9ba

Base64:

57qr