Unicode Finder

"圲" U+5732(CJK UNIFIED IDEOGRAPH-5732)

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

Programming

C
\u5732
JavaScript
\u5732
Java
\u5732
Json
\u5732
Python
\u5732
Perl
\x{5732}
PHP
\x{5732}
Ruby
\u{5732}
Rust
\u{5732}
Go
\u5732

Web

CSS
\005732
HtmlDecimal
圲
HtmlHexadecimal
圲
Url
%E5%9C%B2

Code

MD5
ef23670db10151c5e1af5f5289e788c8
Sha1
94a108926108c8827382e62c1aaa7db4286a5caf
Base64
5Zyy

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5732';
console.log(char);  // Output: 圲

Java:

char c = '\u5732';
System.out.println(c);  // Output: 圲

JSON:

{"text": "\u5732"}  // Value: 圲

Python:

char = '\u5732'
print(char)  # Output: 圲

Perl:

my $char = "\x{5732}";
print $char;  # Output: 圲

PHP:

$char = "\x{5732}";
echo $char;  // Output: 圲

Ruby:

char = "\u{5732}"
puts char  # Output: 圲

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005732";  /* Display: 圲 */
}

HTML Decimal:

<p>HTML decimal: &#22322;</p>  <!-- Display: 圲 -->

HTML Hexadecimal:

<p>HTML hex: &#x5732;</p>  <!-- Display: 圲 -->

URL Encoding:

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

Encodings

MD5:

ef23670db10151c5e1af5f5289e788c8

SHA1:

94a108926108c8827382e62c1aaa7db4286a5caf

Base64:

5Zyy