Unicode Finder

"緸" U+7DF8(CJK UNIFIED IDEOGRAPH-7DF8)

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

Programming

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

Web

CSS
\007DF8
HtmlDecimal
緸
HtmlHexadecimal
緸
Url
%E7%B7%B8

Code

MD5
297ae7beb48c214d51d2ea8220be38ba
Sha1
0f86b8f3b838aa247f158a4b1377a75710ae3557
Base64
57e4

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7DF8';
console.log(char);  // Output: 緸

Java:

char c = '\u7DF8';
System.out.println(c);  // Output: 緸

JSON:

{"text": "\u7DF8"}  // Value: 緸

Python:

char = '\u7DF8'
print(char)  # Output: 緸

Perl:

my $char = "\x{7DF8}";
print $char;  # Output: 緸

PHP:

$char = "\x{7DF8}";
echo $char;  // Output: 緸

Ruby:

char = "\u{7DF8}"
puts char  # Output: 緸

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32248;</p>  <!-- Display: 緸 -->

HTML Hexadecimal:

<p>HTML hex: &#x7DF8;</p>  <!-- Display: 緸 -->

URL Encoding:

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

Encodings

MD5:

297ae7beb48c214d51d2ea8220be38ba

SHA1:

0f86b8f3b838aa247f158a4b1377a75710ae3557

Base64:

57e4