Unicode Finder

"緓" U+7DD3(CJK UNIFIED IDEOGRAPH-7DD3)

U+7DD3
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-7DD3

Programming

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

Web

CSS
\007DD3
HtmlDecimal
緓
HtmlHexadecimal
緓
Url
%E7%B7%93

Code

MD5
af37165f694b904b1fc75e8b057096df
Sha1
597ecfc999d8b96f54baff677df00ef9425bf7b7
Base64
57eT

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7DD3';
console.log(char);  // Output: 緓

Java:

char c = '\u7DD3';
System.out.println(c);  // Output: 緓

JSON:

{"text": "\u7DD3"}  // Value: 緓

Python:

char = '\u7DD3'
print(char)  # Output: 緓

Perl:

my $char = "\x{7DD3}";
print $char;  # Output: 緓

PHP:

$char = "\x{7DD3}";
echo $char;  // Output: 緓

Ruby:

char = "\u{7DD3}"
puts char  # Output: 緓

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32211;</p>  <!-- Display: 緓 -->

HTML Hexadecimal:

<p>HTML hex: &#x7DD3;</p>  <!-- Display: 緓 -->

URL Encoding:

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

Encodings

MD5:

af37165f694b904b1fc75e8b057096df

SHA1:

597ecfc999d8b96f54baff677df00ef9425bf7b7

Base64:

57eT