Unicode Finder

"綍" U+7D8D(CJK UNIFIED IDEOGRAPH-7D8D)

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

Programming

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

Web

CSS
\007D8D
HtmlDecimal
綍
HtmlHexadecimal
綍
Url
%E7%B6%8D

Code

MD5
aadd943b47917d430ae986c9a40b6e42
Sha1
e88f681c2ee1e51c49c39219c0168230c30d2706
Base64
57aN

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7D8D';
console.log(char);  // Output: 綍

Java:

char c = '\u7D8D';
System.out.println(c);  // Output: 綍

JSON:

{"text": "\u7D8D"}  // Value: 綍

Python:

char = '\u7D8D'
print(char)  # Output: 綍

Perl:

my $char = "\x{7D8D}";
print $char;  # Output: 綍

PHP:

$char = "\x{7D8D}";
echo $char;  // Output: 綍

Ruby:

char = "\u{7D8D}"
puts char  # Output: 綍

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32141;</p>  <!-- Display: 綍 -->

HTML Hexadecimal:

<p>HTML hex: &#x7D8D;</p>  <!-- Display: 綍 -->

URL Encoding:

// 綍 URL encoding
https://unicodefinder.com/search.php?query=%E7%B6%8D

Encodings

MD5:

aadd943b47917d430ae986c9a40b6e42

SHA1:

e88f681c2ee1e51c49c39219c0168230c30d2706

Base64:

57aN