Unicode Finder

"圌" U+570C(CJK UNIFIED IDEOGRAPH-570C)

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

Programming

C
\u570C
JavaScript
\u570C
Java
\u570C
Json
\u570C
Python
\u570C
Perl
\x{570C}
PHP
\x{570C}
Ruby
\u{570C}
Rust
\u{570C}
Go
\u570C

Web

CSS
\00570C
HtmlDecimal
圌
HtmlHexadecimal
圌
Url
%E5%9C%8C

Code

MD5
0484f06ae64b5f5cdc2fc4581940e09a
Sha1
fe1f7e0db2ccceee967b67246f9c096c25c6f3b5
Base64
5ZyM

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u570C';
console.log(char);  // Output: 圌

Java:

char c = '\u570C';
System.out.println(c);  // Output: 圌

JSON:

{"text": "\u570C"}  // Value: 圌

Python:

char = '\u570C'
print(char)  # Output: 圌

Perl:

my $char = "\x{570C}";
print $char;  # Output: 圌

PHP:

$char = "\x{570C}";
echo $char;  // Output: 圌

Ruby:

char = "\u{570C}"
puts char  # Output: 圌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#22284;</p>  <!-- Display: 圌 -->

HTML Hexadecimal:

<p>HTML hex: &#x570C;</p>  <!-- Display: 圌 -->

URL Encoding:

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

Encodings

MD5:

0484f06ae64b5f5cdc2fc4581940e09a

SHA1:

fe1f7e0db2ccceee967b67246f9c096c25c6f3b5

Base64:

5ZyM