Unicode Finder

"緂" U+7DC2(CJK UNIFIED IDEOGRAPH-7DC2)

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

Programming

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

Web

CSS
\007DC2
HtmlDecimal
緂
HtmlHexadecimal
緂
Url
%E7%B7%82

Code

MD5
004387deb82acbf8388726fadae76ad9
Sha1
76e6477a984f3c01915afa17d3b339e7875e2525
Base64
57eC

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7DC2';
console.log(char);  // Output: 緂

Java:

char c = '\u7DC2';
System.out.println(c);  // Output: 緂

JSON:

{"text": "\u7DC2"}  // Value: 緂

Python:

char = '\u7DC2'
print(char)  # Output: 緂

Perl:

my $char = "\x{7DC2}";
print $char;  # Output: 緂

PHP:

$char = "\x{7DC2}";
echo $char;  // Output: 緂

Ruby:

char = "\u{7DC2}"
puts char  # Output: 緂

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32194;</p>  <!-- Display: 緂 -->

HTML Hexadecimal:

<p>HTML hex: &#x7DC2;</p>  <!-- Display: 緂 -->

URL Encoding:

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

Encodings

MD5:

004387deb82acbf8388726fadae76ad9

SHA1:

76e6477a984f3c01915afa17d3b339e7875e2525

Base64:

57eC