Unicode Finder

"緞" U+7DDE(CJK UNIFIED IDEOGRAPH-7DDE)

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

Programming

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

Web

CSS
\007DDE
HtmlDecimal
緞
HtmlHexadecimal
緞
Url
%E7%B7%9E

Code

MD5
8c7bcd8a5ea8bccf37dff0c22276d480
Sha1
33fd7c4ec78c9b6180697198acafcc3bf5ca01a3
Base64
57ee

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7DDE';
console.log(char);  // Output: 緞

Java:

char c = '\u7DDE';
System.out.println(c);  // Output: 緞

JSON:

{"text": "\u7DDE"}  // Value: 緞

Python:

char = '\u7DDE'
print(char)  # Output: 緞

Perl:

my $char = "\x{7DDE}";
print $char;  # Output: 緞

PHP:

$char = "\x{7DDE}";
echo $char;  // Output: 緞

Ruby:

char = "\u{7DDE}"
puts char  # Output: 緞

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32222;</p>  <!-- Display: 緞 -->

HTML Hexadecimal:

<p>HTML hex: &#x7DDE;</p>  <!-- Display: 緞 -->

URL Encoding:

// 緞 URL encoding
https://unicodefinder.com/search.php?query=%E7%B7%9E

Encodings

MD5:

8c7bcd8a5ea8bccf37dff0c22276d480

SHA1:

33fd7c4ec78c9b6180697198acafcc3bf5ca01a3

Base64:

57ee