Unicode Finder

"緔" U+7DD4(CJK UNIFIED IDEOGRAPH-7DD4)

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

Programming

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

Web

CSS
\007DD4
HtmlDecimal
緔
HtmlHexadecimal
緔
Url
%E7%B7%94

Code

MD5
38d9fdb4957409d3c25cfc6d648fb223
Sha1
2f98115a5f954f0c79888cd2689abf3732072163
Base64
57eU

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7DD4';
console.log(char);  // Output: 緔

Java:

char c = '\u7DD4';
System.out.println(c);  // Output: 緔

JSON:

{"text": "\u7DD4"}  // Value: 緔

Python:

char = '\u7DD4'
print(char)  # Output: 緔

Perl:

my $char = "\x{7DD4}";
print $char;  # Output: 緔

PHP:

$char = "\x{7DD4}";
echo $char;  // Output: 緔

Ruby:

char = "\u{7DD4}"
puts char  # Output: 緔

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32212;</p>  <!-- Display: 緔 -->

HTML Hexadecimal:

<p>HTML hex: &#x7DD4;</p>  <!-- Display: 緔 -->

URL Encoding:

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

Encodings

MD5:

38d9fdb4957409d3c25cfc6d648fb223

SHA1:

2f98115a5f954f0c79888cd2689abf3732072163

Base64:

57eU