Unicode Finder

"図" U+56F3(CJK UNIFIED IDEOGRAPH-56F3)

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

Programming

C
\u56F3
JavaScript
\u56F3
Java
\u56F3
Json
\u56F3
Python
\u56F3
Perl
\x{56F3}
PHP
\x{56F3}
Ruby
\u{56F3}
Rust
\u{56F3}
Go
\u56F3

Web

CSS
\0056F3
HtmlDecimal
図
HtmlHexadecimal
図
Url
%E5%9B%B3

Code

MD5
da9c8fe340571bb3c3001d536a63234d
Sha1
3aca6391ccb2e0394b88d2b04b38cf2cbe79c0f6
Base64
5Zuz

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u56F3';
console.log(char);  // Output: 図

Java:

char c = '\u56F3';
System.out.println(c);  // Output: 図

JSON:

{"text": "\u56F3"}  // Value: 図

Python:

char = '\u56F3'
print(char)  # Output: 図

Perl:

my $char = "\x{56F3}";
print $char;  # Output: 図

PHP:

$char = "\x{56F3}";
echo $char;  // Output: 図

Ruby:

char = "\u{56F3}"
puts char  # Output: 図

Rust:

let c = '\u{56F3}';
println!("{}", c);  // Output: 図

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0056F3";  /* Display: 図 */
}

HTML Decimal:

<p>HTML decimal: &#22259;</p>  <!-- Display: 図 -->

HTML Hexadecimal:

<p>HTML hex: &#x56F3;</p>  <!-- Display: 図 -->

URL Encoding:

// 図 URL encoding
https://unicodefinder.com/search.php?query=%E5%9B%B3

Encodings

MD5:

da9c8fe340571bb3c3001d536a63234d

SHA1:

3aca6391ccb2e0394b88d2b04b38cf2cbe79c0f6

Base64:

5Zuz