Unicode Finder

"緮" U+7DEE(CJK UNIFIED IDEOGRAPH-7DEE)

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

Programming

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

Web

CSS
\007DEE
HtmlDecimal
緮
HtmlHexadecimal
緮
Url
%E7%B7%AE

Code

MD5
aa12959e86152ea96383833c9d74849b
Sha1
de3f8afc2901dbc83d78ca01b01527143d742f1b
Base64
57eu

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7DEE';
console.log(char);  // Output: 緮

Java:

char c = '\u7DEE';
System.out.println(c);  // Output: 緮

JSON:

{"text": "\u7DEE"}  // Value: 緮

Python:

char = '\u7DEE'
print(char)  # Output: 緮

Perl:

my $char = "\x{7DEE}";
print $char;  # Output: 緮

PHP:

$char = "\x{7DEE}";
echo $char;  // Output: 緮

Ruby:

char = "\u{7DEE}"
puts char  # Output: 緮

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32238;</p>  <!-- Display: 緮 -->

HTML Hexadecimal:

<p>HTML hex: &#x7DEE;</p>  <!-- Display: 緮 -->

URL Encoding:

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

Encodings

MD5:

aa12959e86152ea96383833c9d74849b

SHA1:

de3f8afc2901dbc83d78ca01b01527143d742f1b

Base64:

57eu