Unicode Finder

"圓" U+5713(CJK UNIFIED IDEOGRAPH-5713)

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

Programming

C
\u5713
JavaScript
\u5713
Java
\u5713
Json
\u5713
Python
\u5713
Perl
\x{5713}
PHP
\x{5713}
Ruby
\u{5713}
Rust
\u{5713}
Go
\u5713

Web

CSS
\005713
HtmlDecimal
圓
HtmlHexadecimal
圓
Url
%E5%9C%93

Code

MD5
de938c45a81b4ae125482175c8d43952
Sha1
9633e8c36db1d7d31588bf6f0cf67c34652fb27e
Base64
5ZyT

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5713';
console.log(char);  // Output: 圓

Java:

char c = '\u5713';
System.out.println(c);  // Output: 圓

JSON:

{"text": "\u5713"}  // Value: 圓

Python:

char = '\u5713'
print(char)  # Output: 圓

Perl:

my $char = "\x{5713}";
print $char;  # Output: 圓

PHP:

$char = "\x{5713}";
echo $char;  // Output: 圓

Ruby:

char = "\u{5713}"
puts char  # Output: 圓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005713";  /* Display: 圓 */
}

HTML Decimal:

<p>HTML decimal: &#22291;</p>  <!-- Display: 圓 -->

HTML Hexadecimal:

<p>HTML hex: &#x5713;</p>  <!-- Display: 圓 -->

URL Encoding:

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

Encodings

MD5:

de938c45a81b4ae125482175c8d43952

SHA1:

9633e8c36db1d7d31588bf6f0cf67c34652fb27e

Base64:

5ZyT