Unicode Finder

"園" U+5712(CJK UNIFIED IDEOGRAPH-5712)

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

Programming

C
\u5712
JavaScript
\u5712
Java
\u5712
Json
\u5712
Python
\u5712
Perl
\x{5712}
PHP
\x{5712}
Ruby
\u{5712}
Rust
\u{5712}
Go
\u5712

Web

CSS
\005712
HtmlDecimal
園
HtmlHexadecimal
園
Url
%E5%9C%92

Code

MD5
15d3d71b472efa9bbe154b7c822995a8
Sha1
43bd88ad5a0e9af23662c2397196c223f9064ad8
Base64
5ZyS

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5712';
console.log(char);  // Output: 園

Java:

char c = '\u5712';
System.out.println(c);  // Output: 園

JSON:

{"text": "\u5712"}  // Value: 園

Python:

char = '\u5712'
print(char)  # Output: 園

Perl:

my $char = "\x{5712}";
print $char;  # Output: 園

PHP:

$char = "\x{5712}";
echo $char;  // Output: 園

Ruby:

char = "\u{5712}"
puts char  # Output: 園

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005712";  /* Display: 園 */
}

HTML Decimal:

<p>HTML decimal: &#22290;</p>  <!-- Display: 園 -->

HTML Hexadecimal:

<p>HTML hex: &#x5712;</p>  <!-- Display: 園 -->

URL Encoding:

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

Encodings

MD5:

15d3d71b472efa9bbe154b7c822995a8

SHA1:

43bd88ad5a0e9af23662c2397196c223f9064ad8

Base64:

5ZyS