Unicode Finder

"縖" U+7E16(CJK UNIFIED IDEOGRAPH-7E16)

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

Programming

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

Web

CSS
\007E16
HtmlDecimal
縖
HtmlHexadecimal
縖
Url
%E7%B8%96

Code

MD5
b8d6fd16cbf9492e76d462e0fec66198
Sha1
95092fa0e73a7f8757ddf9da8dd32c6742d596f6
Base64
57iW

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7E16';
console.log(char);  // Output: 縖

Java:

char c = '\u7E16';
System.out.println(c);  // Output: 縖

JSON:

{"text": "\u7E16"}  // Value: 縖

Python:

char = '\u7E16'
print(char)  # Output: 縖

Perl:

my $char = "\x{7E16}";
print $char;  # Output: 縖

PHP:

$char = "\x{7E16}";
echo $char;  // Output: 縖

Ruby:

char = "\u{7E16}"
puts char  # Output: 縖

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32278;</p>  <!-- Display: 縖 -->

HTML Hexadecimal:

<p>HTML hex: &#x7E16;</p>  <!-- Display: 縖 -->

URL Encoding:

// 縖 URL encoding
https://unicodefinder.com/search.php?query=%E7%B8%96

Encodings

MD5:

b8d6fd16cbf9492e76d462e0fec66198

SHA1:

95092fa0e73a7f8757ddf9da8dd32c6742d596f6

Base64:

57iW