Unicode Finder

"緺" U+7DFA(CJK UNIFIED IDEOGRAPH-7DFA)

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

Programming

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

Web

CSS
\007DFA
HtmlDecimal
緺
HtmlHexadecimal
緺
Url
%E7%B7%BA

Code

MD5
88e01ca2d3948d6c3d4e91509e347bf2
Sha1
f87ef959818ab4c9dcb4205d6f1ba358aaab7b36
Base64
57e6

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7DFA';
console.log(char);  // Output: 緺

Java:

char c = '\u7DFA';
System.out.println(c);  // Output: 緺

JSON:

{"text": "\u7DFA"}  // Value: 緺

Python:

char = '\u7DFA'
print(char)  # Output: 緺

Perl:

my $char = "\x{7DFA}";
print $char;  # Output: 緺

PHP:

$char = "\x{7DFA}";
echo $char;  // Output: 緺

Ruby:

char = "\u{7DFA}"
puts char  # Output: 緺

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32250;</p>  <!-- Display: 緺 -->

HTML Hexadecimal:

<p>HTML hex: &#x7DFA;</p>  <!-- Display: 緺 -->

URL Encoding:

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

Encodings

MD5:

88e01ca2d3948d6c3d4e91509e347bf2

SHA1:

f87ef959818ab4c9dcb4205d6f1ba358aaab7b36

Base64:

57e6