Unicode Finder

"怱" U+6031(CJK UNIFIED IDEOGRAPH-6031)

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

Programming

C
\u6031
JavaScript
\u6031
Java
\u6031
Json
\u6031
Python
\u6031
Perl
\x{6031}
PHP
\x{6031}
Ruby
\u{6031}
Rust
\u{6031}
Go
\u6031

Web

CSS
\006031
HtmlDecimal
怱
HtmlHexadecimal
怱
Url
%E6%80%B1

Code

MD5
f4840d9e7b8d7bdc8205cea13d51399d
Sha1
3df4ea1810f52f05a155e7ab79aac8c56f39c37f
Base64
5oCx

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6031';
console.log(char);  // Output: 怱

Java:

char c = '\u6031';
System.out.println(c);  // Output: 怱

JSON:

{"text": "\u6031"}  // Value: 怱

Python:

char = '\u6031'
print(char)  # Output: 怱

Perl:

my $char = "\x{6031}";
print $char;  # Output: 怱

PHP:

$char = "\x{6031}";
echo $char;  // Output: 怱

Ruby:

char = "\u{6031}"
puts char  # Output: 怱

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006031";  /* Display: 怱 */
}

HTML Decimal:

<p>HTML decimal: &#24625;</p>  <!-- Display: 怱 -->

HTML Hexadecimal:

<p>HTML hex: &#x6031;</p>  <!-- Display: 怱 -->

URL Encoding:

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

Encodings

MD5:

f4840d9e7b8d7bdc8205cea13d51399d

SHA1:

3df4ea1810f52f05a155e7ab79aac8c56f39c37f

Base64:

5oCx