Unicode Finder

"緆" U+7DC6(CJK UNIFIED IDEOGRAPH-7DC6)

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

Programming

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

Web

CSS
\007DC6
HtmlDecimal
緆
HtmlHexadecimal
緆
Url
%E7%B7%86

Code

MD5
a2e996ea81c791121c475cc720c0d43d
Sha1
06e12776ec4f44bbedf007fb3fcfc2566dede63d
Base64
57eG

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7DC6';
console.log(char);  // Output: 緆

Java:

char c = '\u7DC6';
System.out.println(c);  // Output: 緆

JSON:

{"text": "\u7DC6"}  // Value: 緆

Python:

char = '\u7DC6'
print(char)  # Output: 緆

Perl:

my $char = "\x{7DC6}";
print $char;  # Output: 緆

PHP:

$char = "\x{7DC6}";
echo $char;  // Output: 緆

Ruby:

char = "\u{7DC6}"
puts char  # Output: 緆

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32198;</p>  <!-- Display: 緆 -->

HTML Hexadecimal:

<p>HTML hex: &#x7DC6;</p>  <!-- Display: 緆 -->

URL Encoding:

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

Encodings

MD5:

a2e996ea81c791121c475cc720c0d43d

SHA1:

06e12776ec4f44bbedf007fb3fcfc2566dede63d

Base64:

57eG