Unicode Finder

"圱" U+5731(CJK UNIFIED IDEOGRAPH-5731)

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

Programming

C
\u5731
JavaScript
\u5731
Java
\u5731
Json
\u5731
Python
\u5731
Perl
\x{5731}
PHP
\x{5731}
Ruby
\u{5731}
Rust
\u{5731}
Go
\u5731

Web

CSS
\005731
HtmlDecimal
圱
HtmlHexadecimal
圱
Url
%E5%9C%B1

Code

MD5
dd3f2857c462547a136d4da337c49d5e
Sha1
166ba2c1a4530182330c8545f18683ceb2b50a6d
Base64
5Zyx

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5731';
console.log(char);  // Output: 圱

Java:

char c = '\u5731';
System.out.println(c);  // Output: 圱

JSON:

{"text": "\u5731"}  // Value: 圱

Python:

char = '\u5731'
print(char)  # Output: 圱

Perl:

my $char = "\x{5731}";
print $char;  # Output: 圱

PHP:

$char = "\x{5731}";
echo $char;  // Output: 圱

Ruby:

char = "\u{5731}"
puts char  # Output: 圱

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005731";  /* Display: 圱 */
}

HTML Decimal:

<p>HTML decimal: &#22321;</p>  <!-- Display: 圱 -->

HTML Hexadecimal:

<p>HTML hex: &#x5731;</p>  <!-- Display: 圱 -->

URL Encoding:

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

Encodings

MD5:

dd3f2857c462547a136d4da337c49d5e

SHA1:

166ba2c1a4530182330c8545f18683ceb2b50a6d

Base64:

5Zyx