Unicode Finder

"圈" U+5708(CJK UNIFIED IDEOGRAPH-5708)

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

Programming

C
\u5708
JavaScript
\u5708
Java
\u5708
Json
\u5708
Python
\u5708
Perl
\x{5708}
PHP
\x{5708}
Ruby
\u{5708}
Rust
\u{5708}
Go
\u5708

Web

CSS
\005708
HtmlDecimal
圈
HtmlHexadecimal
圈
Url
%E5%9C%88

Code

MD5
a39f22af7713c329b921e99a18beaee4
Sha1
8e384ea883cd031eabfa73b5ef9da5eefdea633e
Base64
5ZyI

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5708';
console.log(char);  // Output: 圈

Java:

char c = '\u5708';
System.out.println(c);  // Output: 圈

JSON:

{"text": "\u5708"}  // Value: 圈

Python:

char = '\u5708'
print(char)  # Output: 圈

Perl:

my $char = "\x{5708}";
print $char;  # Output: 圈

PHP:

$char = "\x{5708}";
echo $char;  // Output: 圈

Ruby:

char = "\u{5708}"
puts char  # Output: 圈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005708";  /* Display: 圈 */
}

HTML Decimal:

<p>HTML decimal: &#22280;</p>  <!-- Display: 圈 -->

HTML Hexadecimal:

<p>HTML hex: &#x5708;</p>  <!-- Display: 圈 -->

URL Encoding:

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

Encodings

MD5:

a39f22af7713c329b921e99a18beaee4

SHA1:

8e384ea883cd031eabfa73b5ef9da5eefdea633e

Base64:

5ZyI