Unicode Finder

"緈" U+7DC8(CJK UNIFIED IDEOGRAPH-7DC8)

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

Programming

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

Web

CSS
\007DC8
HtmlDecimal
緈
HtmlHexadecimal
緈
Url
%E7%B7%88

Code

MD5
84e6bef6f0b0f7ed182db6703e605a1e
Sha1
d75627f77f8bd69e558e6942e77414384ef15c19
Base64
57eI

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7DC8';
console.log(char);  // Output: 緈

Java:

char c = '\u7DC8';
System.out.println(c);  // Output: 緈

JSON:

{"text": "\u7DC8"}  // Value: 緈

Python:

char = '\u7DC8'
print(char)  # Output: 緈

Perl:

my $char = "\x{7DC8}";
print $char;  # Output: 緈

PHP:

$char = "\x{7DC8}";
echo $char;  // Output: 緈

Ruby:

char = "\u{7DC8}"
puts char  # Output: 緈

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32200;</p>  <!-- Display: 緈 -->

HTML Hexadecimal:

<p>HTML hex: &#x7DC8;</p>  <!-- Display: 緈 -->

URL Encoding:

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

Encodings

MD5:

84e6bef6f0b0f7ed182db6703e605a1e

SHA1:

d75627f77f8bd69e558e6942e77414384ef15c19

Base64:

57eI