Unicode Finder

"圙" U+5719(CJK UNIFIED IDEOGRAPH-5719)

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

Programming

C
\u5719
JavaScript
\u5719
Java
\u5719
Json
\u5719
Python
\u5719
Perl
\x{5719}
PHP
\x{5719}
Ruby
\u{5719}
Rust
\u{5719}
Go
\u5719

Web

CSS
\005719
HtmlDecimal
圙
HtmlHexadecimal
圙
Url
%E5%9C%99

Code

MD5
8d059c133889649537b6b317a30b1f8c
Sha1
feb7fed1368d741427942245126b2d7b1e2b7779
Base64
5ZyZ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5719';
console.log(char);  // Output: 圙

Java:

char c = '\u5719';
System.out.println(c);  // Output: 圙

JSON:

{"text": "\u5719"}  // Value: 圙

Python:

char = '\u5719'
print(char)  # Output: 圙

Perl:

my $char = "\x{5719}";
print $char;  # Output: 圙

PHP:

$char = "\x{5719}";
echo $char;  // Output: 圙

Ruby:

char = "\u{5719}"
puts char  # Output: 圙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005719";  /* Display: 圙 */
}

HTML Decimal:

<p>HTML decimal: &#22297;</p>  <!-- Display: 圙 -->

HTML Hexadecimal:

<p>HTML hex: &#x5719;</p>  <!-- Display: 圙 -->

URL Encoding:

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

Encodings

MD5:

8d059c133889649537b6b317a30b1f8c

SHA1:

feb7fed1368d741427942245126b2d7b1e2b7779

Base64:

5ZyZ