Unicode Finder

"恇" U+6047(CJK UNIFIED IDEOGRAPH-6047)

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

Programming

C
\u6047
JavaScript
\u6047
Java
\u6047
Json
\u6047
Python
\u6047
Perl
\x{6047}
PHP
\x{6047}
Ruby
\u{6047}
Rust
\u{6047}
Go
\u6047

Web

CSS
\006047
HtmlDecimal
恇
HtmlHexadecimal
恇
Url
%E6%81%87

Code

MD5
f735ac0bb3b3a1529f4ca728e90e57bd
Sha1
0c39445386b2692f38412837025bf9cebbfcfaa3
Base64
5oGH

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6047';
console.log(char);  // Output: 恇

Java:

char c = '\u6047';
System.out.println(c);  // Output: 恇

JSON:

{"text": "\u6047"}  // Value: 恇

Python:

char = '\u6047'
print(char)  # Output: 恇

Perl:

my $char = "\x{6047}";
print $char;  # Output: 恇

PHP:

$char = "\x{6047}";
echo $char;  // Output: 恇

Ruby:

char = "\u{6047}"
puts char  # Output: 恇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006047";  /* Display: 恇 */
}

HTML Decimal:

<p>HTML decimal: &#24647;</p>  <!-- Display: 恇 -->

HTML Hexadecimal:

<p>HTML hex: &#x6047;</p>  <!-- Display: 恇 -->

URL Encoding:

// 恇 URL encoding
https://unicodefinder.com/search.php?query=%E6%81%87

Encodings

MD5:

f735ac0bb3b3a1529f4ca728e90e57bd

SHA1:

0c39445386b2692f38412837025bf9cebbfcfaa3

Base64:

5oGH