Unicode Finder

"圜" U+571C(CJK UNIFIED IDEOGRAPH-571C)

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

Programming

C
\u571C
JavaScript
\u571C
Java
\u571C
Json
\u571C
Python
\u571C
Perl
\x{571C}
PHP
\x{571C}
Ruby
\u{571C}
Rust
\u{571C}
Go
\u571C

Web

CSS
\00571C
HtmlDecimal
圜
HtmlHexadecimal
圜
Url
%E5%9C%9C

Code

MD5
5cf7447e5e775d5a0b71d18cfc489c20
Sha1
d4cffd641ae04018f88f5212d4b45ed2cfc320ab
Base64
5Zyc

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u571C';
console.log(char);  // Output: 圜

Java:

char c = '\u571C';
System.out.println(c);  // Output: 圜

JSON:

{"text": "\u571C"}  // Value: 圜

Python:

char = '\u571C'
print(char)  # Output: 圜

Perl:

my $char = "\x{571C}";
print $char;  # Output: 圜

PHP:

$char = "\x{571C}";
echo $char;  // Output: 圜

Ruby:

char = "\u{571C}"
puts char  # Output: 圜

Rust:

let c = '\u{571C}';
println!("{}", c);  // Output: 圜

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00571C";  /* Display: 圜 */
}

HTML Decimal:

<p>HTML decimal: &#22300;</p>  <!-- Display: 圜 -->

HTML Hexadecimal:

<p>HTML hex: &#x571C;</p>  <!-- Display: 圜 -->

URL Encoding:

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

Encodings

MD5:

5cf7447e5e775d5a0b71d18cfc489c20

SHA1:

d4cffd641ae04018f88f5212d4b45ed2cfc320ab

Base64:

5Zyc