Unicode Finder

"緾" U+7DFE(CJK UNIFIED IDEOGRAPH-7DFE)

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

Programming

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

Web

CSS
\007DFE
HtmlDecimal
緾
HtmlHexadecimal
緾
Url
%E7%B7%BE

Code

MD5
a63eedc31e9ce2ccd023173bdd9ff34c
Sha1
74c2bd676cfcd51bd94825f96b4dd6bd838afbfc
Base64
57e+

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7DFE';
console.log(char);  // Output: 緾

Java:

char c = '\u7DFE';
System.out.println(c);  // Output: 緾

JSON:

{"text": "\u7DFE"}  // Value: 緾

Python:

char = '\u7DFE'
print(char)  # Output: 緾

Perl:

my $char = "\x{7DFE}";
print $char;  # Output: 緾

PHP:

$char = "\x{7DFE}";
echo $char;  // Output: 緾

Ruby:

char = "\u{7DFE}"
puts char  # Output: 緾

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32254;</p>  <!-- Display: 緾 -->

HTML Hexadecimal:

<p>HTML hex: &#x7DFE;</p>  <!-- Display: 緾 -->

URL Encoding:

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

Encodings

MD5:

a63eedc31e9ce2ccd023173bdd9ff34c

SHA1:

74c2bd676cfcd51bd94825f96b4dd6bd838afbfc

Base64:

57e+