Unicode Finder

"恌" U+604C(CJK UNIFIED IDEOGRAPH-604C)

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

Programming

C
\u604C
JavaScript
\u604C
Java
\u604C
Json
\u604C
Python
\u604C
Perl
\x{604C}
PHP
\x{604C}
Ruby
\u{604C}
Rust
\u{604C}
Go
\u604C

Web

CSS
\00604C
HtmlDecimal
恌
HtmlHexadecimal
恌
Url
%E6%81%8C

Code

MD5
088d3ef5ade1deaba62aaa7d028ebf2e
Sha1
c01e24ceec2a099b0e4dff1979c3e8f94bda35c1
Base64
5oGM

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u604C';
console.log(char);  // Output: 恌

Java:

char c = '\u604C';
System.out.println(c);  // Output: 恌

JSON:

{"text": "\u604C"}  // Value: 恌

Python:

char = '\u604C'
print(char)  # Output: 恌

Perl:

my $char = "\x{604C}";
print $char;  # Output: 恌

PHP:

$char = "\x{604C}";
echo $char;  // Output: 恌

Ruby:

char = "\u{604C}"
puts char  # Output: 恌

Rust:

let c = '\u{604C}';
println!("{}", c);  // Output: 恌

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00604C";  /* Display: 恌 */
}

HTML Decimal:

<p>HTML decimal: &#24652;</p>  <!-- Display: 恌 -->

HTML Hexadecimal:

<p>HTML hex: &#x604C;</p>  <!-- Display: 恌 -->

URL Encoding:

// 恌 URL encoding
https://unicodefinder.com/search.php?query=%E6%81%8C

Encodings

MD5:

088d3ef5ade1deaba62aaa7d028ebf2e

SHA1:

c01e24ceec2a099b0e4dff1979c3e8f94bda35c1

Base64:

5oGM