Unicode Finder

"絍" U+7D4D(CJK UNIFIED IDEOGRAPH-7D4D)

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

Programming

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

Web

CSS
\007D4D
HtmlDecimal
絍
HtmlHexadecimal
絍
Url
%E7%B5%8D

Code

MD5
e4e44624d4e0a2e39d17de0e38d4df7e
Sha1
cde8d9a65d581dd5d231304c04c0ecae5173d2b6
Base64
57WN

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7D4D';
console.log(char);  // Output: 絍

Java:

char c = '\u7D4D';
System.out.println(c);  // Output: 絍

JSON:

{"text": "\u7D4D"}  // Value: 絍

Python:

char = '\u7D4D'
print(char)  # Output: 絍

Perl:

my $char = "\x{7D4D}";
print $char;  # Output: 絍

PHP:

$char = "\x{7D4D}";
echo $char;  // Output: 絍

Ruby:

char = "\u{7D4D}"
puts char  # Output: 絍

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32077;</p>  <!-- Display: 絍 -->

HTML Hexadecimal:

<p>HTML hex: &#x7D4D;</p>  <!-- Display: 絍 -->

URL Encoding:

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

Encodings

MD5:

e4e44624d4e0a2e39d17de0e38d4df7e

SHA1:

cde8d9a65d581dd5d231304c04c0ecae5173d2b6

Base64:

57WN