Unicode Finder

"恄" U+6044(CJK UNIFIED IDEOGRAPH-6044)

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

Programming

C
\u6044
JavaScript
\u6044
Java
\u6044
Json
\u6044
Python
\u6044
Perl
\x{6044}
PHP
\x{6044}
Ruby
\u{6044}
Rust
\u{6044}
Go
\u6044

Web

CSS
\006044
HtmlDecimal
恄
HtmlHexadecimal
恄
Url
%E6%81%84

Code

MD5
f045bbed4cf4526715d546c3ce154daa
Sha1
b81119844a3a1730ce107f6d5e09217cb61b2e12
Base64
5oGE

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6044';
console.log(char);  // Output: 恄

Java:

char c = '\u6044';
System.out.println(c);  // Output: 恄

JSON:

{"text": "\u6044"}  // Value: 恄

Python:

char = '\u6044'
print(char)  # Output: 恄

Perl:

my $char = "\x{6044}";
print $char;  # Output: 恄

PHP:

$char = "\x{6044}";
echo $char;  // Output: 恄

Ruby:

char = "\u{6044}"
puts char  # Output: 恄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006044";  /* Display: 恄 */
}

HTML Decimal:

<p>HTML decimal: &#24644;</p>  <!-- Display: 恄 -->

HTML Hexadecimal:

<p>HTML hex: &#x6044;</p>  <!-- Display: 恄 -->

URL Encoding:

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

Encodings

MD5:

f045bbed4cf4526715d546c3ce154daa

SHA1:

b81119844a3a1730ce107f6d5e09217cb61b2e12

Base64:

5oGE