Unicode Finder

"恔" U+6054(CJK UNIFIED IDEOGRAPH-6054)

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

Programming

C
\u6054
JavaScript
\u6054
Java
\u6054
Json
\u6054
Python
\u6054
Perl
\x{6054}
PHP
\x{6054}
Ruby
\u{6054}
Rust
\u{6054}
Go
\u6054

Web

CSS
\006054
HtmlDecimal
恔
HtmlHexadecimal
恔
Url
%E6%81%94

Code

MD5
fa0351c5193cefab1f902b4dd86df3b3
Sha1
f3c604521e9b0228d9a2124eba6c0cd41d1b399c
Base64
5oGU

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6054';
console.log(char);  // Output: 恔

Java:

char c = '\u6054';
System.out.println(c);  // Output: 恔

JSON:

{"text": "\u6054"}  // Value: 恔

Python:

char = '\u6054'
print(char)  # Output: 恔

Perl:

my $char = "\x{6054}";
print $char;  # Output: 恔

PHP:

$char = "\x{6054}";
echo $char;  // Output: 恔

Ruby:

char = "\u{6054}"
puts char  # Output: 恔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006054";  /* Display: 恔 */
}

HTML Decimal:

<p>HTML decimal: &#24660;</p>  <!-- Display: 恔 -->

HTML Hexadecimal:

<p>HTML hex: &#x6054;</p>  <!-- Display: 恔 -->

URL Encoding:

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

Encodings

MD5:

fa0351c5193cefab1f902b4dd86df3b3

SHA1:

f3c604521e9b0228d9a2124eba6c0cd41d1b399c

Base64:

5oGU