Unicode Finder

"恰" U+6070(CJK UNIFIED IDEOGRAPH-6070)

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

Programming

C
\u6070
JavaScript
\u6070
Java
\u6070
Json
\u6070
Python
\u6070
Perl
\x{6070}
PHP
\x{6070}
Ruby
\u{6070}
Rust
\u{6070}
Go
\u6070

Web

CSS
\006070
HtmlDecimal
恰
HtmlHexadecimal
恰
Url
%E6%81%B0

Code

MD5
5f8d6a92d257cdb7992ff847f74c2338
Sha1
3d23b228884b893c0a7416688ebdcae9411ca5f7
Base64
5oGw

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6070';
console.log(char);  // Output: 恰

Java:

char c = '\u6070';
System.out.println(c);  // Output: 恰

JSON:

{"text": "\u6070"}  // Value: 恰

Python:

char = '\u6070'
print(char)  # Output: 恰

Perl:

my $char = "\x{6070}";
print $char;  # Output: 恰

PHP:

$char = "\x{6070}";
echo $char;  // Output: 恰

Ruby:

char = "\u{6070}"
puts char  # Output: 恰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006070";  /* Display: 恰 */
}

HTML Decimal:

<p>HTML decimal: &#24688;</p>  <!-- Display: 恰 -->

HTML Hexadecimal:

<p>HTML hex: &#x6070;</p>  <!-- Display: 恰 -->

URL Encoding:

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

Encodings

MD5:

5f8d6a92d257cdb7992ff847f74c2338

SHA1:

3d23b228884b893c0a7416688ebdcae9411ca5f7

Base64:

5oGw