Unicode Finder

"緖" U+7DD6(CJK UNIFIED IDEOGRAPH-7DD6)

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

Programming

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

Web

CSS
\007DD6
HtmlDecimal
緖
HtmlHexadecimal
緖
Url
%E7%B7%96

Code

MD5
c1fae9e7f9668d687976c730f6e2ec5d
Sha1
0e591e5a1de62562101a7dd2787ac28737d053c7
Base64
57eW

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7DD6';
console.log(char);  // Output: 緖

Java:

char c = '\u7DD6';
System.out.println(c);  // Output: 緖

JSON:

{"text": "\u7DD6"}  // Value: 緖

Python:

char = '\u7DD6'
print(char)  # Output: 緖

Perl:

my $char = "\x{7DD6}";
print $char;  # Output: 緖

PHP:

$char = "\x{7DD6}";
echo $char;  // Output: 緖

Ruby:

char = "\u{7DD6}"
puts char  # Output: 緖

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32214;</p>  <!-- Display: 緖 -->

HTML Hexadecimal:

<p>HTML hex: &#x7DD6;</p>  <!-- Display: 緖 -->

URL Encoding:

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

Encodings

MD5:

c1fae9e7f9668d687976c730f6e2ec5d

SHA1:

0e591e5a1de62562101a7dd2787ac28737d053c7

Base64:

57eW