Unicode Finder

"圬" U+572C(CJK UNIFIED IDEOGRAPH-572C)

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

Programming

C
\u572C
JavaScript
\u572C
Java
\u572C
Json
\u572C
Python
\u572C
Perl
\x{572C}
PHP
\x{572C}
Ruby
\u{572C}
Rust
\u{572C}
Go
\u572C

Web

CSS
\00572C
HtmlDecimal
圬
HtmlHexadecimal
圬
Url
%E5%9C%AC

Code

MD5
6b5591756a74c8f3fc40337625b24aee
Sha1
6b21e2a622450da157a6362bd3893ba33261e8d4
Base64
5Zys

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u572C';
console.log(char);  // Output: 圬

Java:

char c = '\u572C';
System.out.println(c);  // Output: 圬

JSON:

{"text": "\u572C"}  // Value: 圬

Python:

char = '\u572C'
print(char)  # Output: 圬

Perl:

my $char = "\x{572C}";
print $char;  # Output: 圬

PHP:

$char = "\x{572C}";
echo $char;  // Output: 圬

Ruby:

char = "\u{572C}"
puts char  # Output: 圬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#22316;</p>  <!-- Display: 圬 -->

HTML Hexadecimal:

<p>HTML hex: &#x572C;</p>  <!-- Display: 圬 -->

URL Encoding:

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

Encodings

MD5:

6b5591756a74c8f3fc40337625b24aee

SHA1:

6b21e2a622450da157a6362bd3893ba33261e8d4

Base64:

5Zys