Unicode Finder

"囲" U+56F2(CJK UNIFIED IDEOGRAPH-56F2)

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

Programming

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

Web

CSS
\0056F2
HtmlDecimal
囲
HtmlHexadecimal
囲
Url
%E5%9B%B2

Code

MD5
569fa787e38de5e55b4ef7445c4c6cd2
Sha1
88f9a437d03958b0ae718324f56ce67d15425efd
Base64
5Zuy

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u56F2';
console.log(char);  // Output: 囲

Java:

char c = '\u56F2';
System.out.println(c);  // Output: 囲

JSON:

{"text": "\u56F2"}  // Value: 囲

Python:

char = '\u56F2'
print(char)  # Output: 囲

Perl:

my $char = "\x{56F2}";
print $char;  # Output: 囲

PHP:

$char = "\x{56F2}";
echo $char;  // Output: 囲

Ruby:

char = "\u{56F2}"
puts char  # Output: 囲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#22258;</p>  <!-- Display: 囲 -->

HTML Hexadecimal:

<p>HTML hex: &#x56F2;</p>  <!-- Display: 囲 -->

URL Encoding:

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

Encodings

MD5:

569fa787e38de5e55b4ef7445c4c6cd2

SHA1:

88f9a437d03958b0ae718324f56ce67d15425efd

Base64:

5Zuy