Unicode Finder

"圥" U+5725(CJK UNIFIED IDEOGRAPH-5725)

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

Programming

C
\u5725
JavaScript
\u5725
Java
\u5725
Json
\u5725
Python
\u5725
Perl
\x{5725}
PHP
\x{5725}
Ruby
\u{5725}
Rust
\u{5725}
Go
\u5725

Web

CSS
\005725
HtmlDecimal
圥
HtmlHexadecimal
圥
Url
%E5%9C%A5

Code

MD5
3a2b71504a06cb674c4951a793bc23c7
Sha1
affde136db4f22a51aa5ca65a69ede225339562a
Base64
5Zyl

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5725';
console.log(char);  // Output: 圥

Java:

char c = '\u5725';
System.out.println(c);  // Output: 圥

JSON:

{"text": "\u5725"}  // Value: 圥

Python:

char = '\u5725'
print(char)  # Output: 圥

Perl:

my $char = "\x{5725}";
print $char;  # Output: 圥

PHP:

$char = "\x{5725}";
echo $char;  // Output: 圥

Ruby:

char = "\u{5725}"
puts char  # Output: 圥

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005725";  /* Display: 圥 */
}

HTML Decimal:

<p>HTML decimal: &#22309;</p>  <!-- Display: 圥 -->

HTML Hexadecimal:

<p>HTML hex: &#x5725;</p>  <!-- Display: 圥 -->

URL Encoding:

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

Encodings

MD5:

3a2b71504a06cb674c4951a793bc23c7

SHA1:

affde136db4f22a51aa5ca65a69ede225339562a

Base64:

5Zyl