Unicode Finder

"恈" U+6048(CJK UNIFIED IDEOGRAPH-6048)

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

Programming

C
\u6048
JavaScript
\u6048
Java
\u6048
Json
\u6048
Python
\u6048
Perl
\x{6048}
PHP
\x{6048}
Ruby
\u{6048}
Rust
\u{6048}
Go
\u6048

Web

CSS
\006048
HtmlDecimal
恈
HtmlHexadecimal
恈
Url
%E6%81%88

Code

MD5
bcd44b9d0c3c9fa749be8e5e27ceb7a4
Sha1
77179d8ea53df504236adba209c44024204e8d23
Base64
5oGI

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6048';
console.log(char);  // Output: 恈

Java:

char c = '\u6048';
System.out.println(c);  // Output: 恈

JSON:

{"text": "\u6048"}  // Value: 恈

Python:

char = '\u6048'
print(char)  # Output: 恈

Perl:

my $char = "\x{6048}";
print $char;  # Output: 恈

PHP:

$char = "\x{6048}";
echo $char;  // Output: 恈

Ruby:

char = "\u{6048}"
puts char  # Output: 恈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006048";  /* Display: 恈 */
}

HTML Decimal:

<p>HTML decimal: &#24648;</p>  <!-- Display: 恈 -->

HTML Hexadecimal:

<p>HTML hex: &#x6048;</p>  <!-- Display: 恈 -->

URL Encoding:

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

Encodings

MD5:

bcd44b9d0c3c9fa749be8e5e27ceb7a4

SHA1:

77179d8ea53df504236adba209c44024204e8d23

Base64:

5oGI