Unicode Finder

"恉" U+6049(CJK UNIFIED IDEOGRAPH-6049)

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

Programming

C
\u6049
JavaScript
\u6049
Java
\u6049
Json
\u6049
Python
\u6049
Perl
\x{6049}
PHP
\x{6049}
Ruby
\u{6049}
Rust
\u{6049}
Go
\u6049

Web

CSS
\006049
HtmlDecimal
恉
HtmlHexadecimal
恉
Url
%E6%81%89

Code

MD5
a27a4a8e3280f3cceff83af04f471fb1
Sha1
c16d9f550b5a31c9611dbbed261a02b6295b1db6
Base64
5oGJ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6049';
console.log(char);  // Output: 恉

Java:

char c = '\u6049';
System.out.println(c);  // Output: 恉

JSON:

{"text": "\u6049"}  // Value: 恉

Python:

char = '\u6049'
print(char)  # Output: 恉

Perl:

my $char = "\x{6049}";
print $char;  # Output: 恉

PHP:

$char = "\x{6049}";
echo $char;  // Output: 恉

Ruby:

char = "\u{6049}"
puts char  # Output: 恉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006049";  /* Display: 恉 */
}

HTML Decimal:

<p>HTML decimal: &#24649;</p>  <!-- Display: 恉 -->

HTML Hexadecimal:

<p>HTML hex: &#x6049;</p>  <!-- Display: 恉 -->

URL Encoding:

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

Encodings

MD5:

a27a4a8e3280f3cceff83af04f471fb1

SHA1:

c16d9f550b5a31c9611dbbed261a02b6295b1db6

Base64:

5oGJ