Unicode Finder

"圢" U+5722(CJK UNIFIED IDEOGRAPH-5722)

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

Programming

C
\u5722
JavaScript
\u5722
Java
\u5722
Json
\u5722
Python
\u5722
Perl
\x{5722}
PHP
\x{5722}
Ruby
\u{5722}
Rust
\u{5722}
Go
\u5722

Web

CSS
\005722
HtmlDecimal
圢
HtmlHexadecimal
圢
Url
%E5%9C%A2

Code

MD5
a04a74d1bd5e81085647e446413ef6d7
Sha1
a6c56e24a66590bfd584ba53fc7d9bfa9d8eb2be
Base64
5Zyi

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5722';
console.log(char);  // Output: 圢

Java:

char c = '\u5722';
System.out.println(c);  // Output: 圢

JSON:

{"text": "\u5722"}  // Value: 圢

Python:

char = '\u5722'
print(char)  # Output: 圢

Perl:

my $char = "\x{5722}";
print $char;  # Output: 圢

PHP:

$char = "\x{5722}";
echo $char;  // Output: 圢

Ruby:

char = "\u{5722}"
puts char  # Output: 圢

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005722";  /* Display: 圢 */
}

HTML Decimal:

<p>HTML decimal: &#22306;</p>  <!-- Display: 圢 -->

HTML Hexadecimal:

<p>HTML hex: &#x5722;</p>  <!-- Display: 圢 -->

URL Encoding:

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

Encodings

MD5:

a04a74d1bd5e81085647e446413ef6d7

SHA1:

a6c56e24a66590bfd584ba53fc7d9bfa9d8eb2be

Base64:

5Zyi