Unicode Finder

"緷" U+7DF7(CJK UNIFIED IDEOGRAPH-7DF7)

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

Programming

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

Web

CSS
\007DF7
HtmlDecimal
緷
HtmlHexadecimal
緷
Url
%E7%B7%B7

Code

MD5
007775621f7d1e0a5e47a6081db03bf4
Sha1
0048cb1c33e6399a3f7b63e846f98214ecec8cc1
Base64
57e3

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7DF7';
console.log(char);  // Output: 緷

Java:

char c = '\u7DF7';
System.out.println(c);  // Output: 緷

JSON:

{"text": "\u7DF7"}  // Value: 緷

Python:

char = '\u7DF7'
print(char)  # Output: 緷

Perl:

my $char = "\x{7DF7}";
print $char;  # Output: 緷

PHP:

$char = "\x{7DF7}";
echo $char;  // Output: 緷

Ruby:

char = "\u{7DF7}"
puts char  # Output: 緷

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32247;</p>  <!-- Display: 緷 -->

HTML Hexadecimal:

<p>HTML hex: &#x7DF7;</p>  <!-- Display: 緷 -->

URL Encoding:

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

Encodings

MD5:

007775621f7d1e0a5e47a6081db03bf4

SHA1:

0048cb1c33e6399a3f7b63e846f98214ecec8cc1

Base64:

57e3