Unicode Finder

"圖" U+5716(CJK UNIFIED IDEOGRAPH-5716)

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

Programming

C
\u5716
JavaScript
\u5716
Java
\u5716
Json
\u5716
Python
\u5716
Perl
\x{5716}
PHP
\x{5716}
Ruby
\u{5716}
Rust
\u{5716}
Go
\u5716

Web

CSS
\005716
HtmlDecimal
圖
HtmlHexadecimal
圖
Url
%E5%9C%96

Code

MD5
f8a6d850a13b64172b844e84a662d4ca
Sha1
3a74f4cd30344112c03e747667b58ce140805ea3
Base64
5ZyW

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5716';
console.log(char);  // Output: 圖

Java:

char c = '\u5716';
System.out.println(c);  // Output: 圖

JSON:

{"text": "\u5716"}  // Value: 圖

Python:

char = '\u5716'
print(char)  # Output: 圖

Perl:

my $char = "\x{5716}";
print $char;  # Output: 圖

PHP:

$char = "\x{5716}";
echo $char;  // Output: 圖

Ruby:

char = "\u{5716}"
puts char  # Output: 圖

Rust:

let c = '\u{5716}';
println!("{}", c);  // Output: 圖

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005716";  /* Display: 圖 */
}

HTML Decimal:

<p>HTML decimal: &#22294;</p>  <!-- Display: 圖 -->

HTML Hexadecimal:

<p>HTML hex: &#x5716;</p>  <!-- Display: 圖 -->

URL Encoding:

// 圖 URL encoding
https://unicodefinder.com/search.php?query=%E5%9C%96

Encodings

MD5:

f8a6d850a13b64172b844e84a662d4ca

SHA1:

3a74f4cd30344112c03e747667b58ce140805ea3

Base64:

5ZyW