Unicode Finder

"怲" U+6032(CJK UNIFIED IDEOGRAPH-6032)

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

Programming

C
\u6032
JavaScript
\u6032
Java
\u6032
Json
\u6032
Python
\u6032
Perl
\x{6032}
PHP
\x{6032}
Ruby
\u{6032}
Rust
\u{6032}
Go
\u6032

Web

CSS
\006032
HtmlDecimal
怲
HtmlHexadecimal
怲
Url
%E6%80%B2

Code

MD5
49541077be3a85b29629dcefecf852bc
Sha1
32c729dae4cab83b67eabec25d8b03cdb683a102
Base64
5oCy

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6032';
console.log(char);  // Output: 怲

Java:

char c = '\u6032';
System.out.println(c);  // Output: 怲

JSON:

{"text": "\u6032"}  // Value: 怲

Python:

char = '\u6032'
print(char)  # Output: 怲

Perl:

my $char = "\x{6032}";
print $char;  # Output: 怲

PHP:

$char = "\x{6032}";
echo $char;  // Output: 怲

Ruby:

char = "\u{6032}"
puts char  # Output: 怲

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006032";  /* Display: 怲 */
}

HTML Decimal:

<p>HTML decimal: &#24626;</p>  <!-- Display: 怲 -->

HTML Hexadecimal:

<p>HTML hex: &#x6032;</p>  <!-- Display: 怲 -->

URL Encoding:

// 怲 URL encoding
https://unicodefinder.com/search.php?query=%E6%80%B2

Encodings

MD5:

49541077be3a85b29629dcefecf852bc

SHA1:

32c729dae4cab83b67eabec25d8b03cdb683a102

Base64:

5oCy