Unicode Finder

"恙" U+6059(CJK UNIFIED IDEOGRAPH-6059)

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

Programming

C
\u6059
JavaScript
\u6059
Java
\u6059
Json
\u6059
Python
\u6059
Perl
\x{6059}
PHP
\x{6059}
Ruby
\u{6059}
Rust
\u{6059}
Go
\u6059

Web

CSS
\006059
HtmlDecimal
恙
HtmlHexadecimal
恙
Url
%E6%81%99

Code

MD5
f1fa7e0f1607f96067271812d959cdc8
Sha1
7a465785ebd490379648dee361ff6eab81ce2999
Base64
5oGZ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6059';
console.log(char);  // Output: 恙

Java:

char c = '\u6059';
System.out.println(c);  // Output: 恙

JSON:

{"text": "\u6059"}  // Value: 恙

Python:

char = '\u6059'
print(char)  # Output: 恙

Perl:

my $char = "\x{6059}";
print $char;  # Output: 恙

PHP:

$char = "\x{6059}";
echo $char;  // Output: 恙

Ruby:

char = "\u{6059}"
puts char  # Output: 恙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006059";  /* Display: 恙 */
}

HTML Decimal:

<p>HTML decimal: &#24665;</p>  <!-- Display: 恙 -->

HTML Hexadecimal:

<p>HTML hex: &#x6059;</p>  <!-- Display: 恙 -->

URL Encoding:

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

Encodings

MD5:

f1fa7e0f1607f96067271812d959cdc8

SHA1:

7a465785ebd490379648dee361ff6eab81ce2999

Base64:

5oGZ