Unicode Finder

"絯" U+7D6F(CJK UNIFIED IDEOGRAPH-7D6F)

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

Programming

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

Web

CSS
\007D6F
HtmlDecimal
絯
HtmlHexadecimal
絯
Url
%E7%B5%AF

Code

MD5
f0e58f68c9bbc5c5d9b2fab6733483e1
Sha1
83bb07d0ef4fc599c2a002d6baf235efc4967091
Base64
57Wv

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7D6F';
console.log(char);  // Output: 絯

Java:

char c = '\u7D6F';
System.out.println(c);  // Output: 絯

JSON:

{"text": "\u7D6F"}  // Value: 絯

Python:

char = '\u7D6F'
print(char)  # Output: 絯

Perl:

my $char = "\x{7D6F}";
print $char;  # Output: 絯

PHP:

$char = "\x{7D6F}";
echo $char;  // Output: 絯

Ruby:

char = "\u{7D6F}"
puts char  # Output: 絯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32111;</p>  <!-- Display: 絯 -->

HTML Hexadecimal:

<p>HTML hex: &#x7D6F;</p>  <!-- Display: 絯 -->

URL Encoding:

// 絯 URL encoding
https://unicodefinder.com/search.php?query=%E7%B5%AF

Encodings

MD5:

f0e58f68c9bbc5c5d9b2fab6733483e1

SHA1:

83bb07d0ef4fc599c2a002d6baf235efc4967091

Base64:

57Wv