Unicode Finder

"圃" U+5703(CJK UNIFIED IDEOGRAPH-5703)

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

Programming

C
\u5703
JavaScript
\u5703
Java
\u5703
Json
\u5703
Python
\u5703
Perl
\x{5703}
PHP
\x{5703}
Ruby
\u{5703}
Rust
\u{5703}
Go
\u5703

Web

CSS
\005703
HtmlDecimal
圃
HtmlHexadecimal
圃
Url
%E5%9C%83

Code

MD5
5a0fa2d27ce6b6e066c71472d4673300
Sha1
f606658c9b97c5c0d3925d33e538f1de0fe5fca6
Base64
5ZyD

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5703';
console.log(char);  // Output: 圃

Java:

char c = '\u5703';
System.out.println(c);  // Output: 圃

JSON:

{"text": "\u5703"}  // Value: 圃

Python:

char = '\u5703'
print(char)  # Output: 圃

Perl:

my $char = "\x{5703}";
print $char;  # Output: 圃

PHP:

$char = "\x{5703}";
echo $char;  // Output: 圃

Ruby:

char = "\u{5703}"
puts char  # Output: 圃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005703";  /* Display: 圃 */
}

HTML Decimal:

<p>HTML decimal: &#22275;</p>  <!-- Display: 圃 -->

HTML Hexadecimal:

<p>HTML hex: &#x5703;</p>  <!-- Display: 圃 -->

URL Encoding:

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

Encodings

MD5:

5a0fa2d27ce6b6e066c71472d4673300

SHA1:

f606658c9b97c5c0d3925d33e538f1de0fe5fca6

Base64:

5ZyD