Unicode Finder

"患" U+60A3(CJK UNIFIED IDEOGRAPH-60A3)

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

Programming

C
\u60A3
JavaScript
\u60A3
Java
\u60A3
Json
\u60A3
Python
\u60A3
Perl
\x{60A3}
PHP
\x{60A3}
Ruby
\u{60A3}
Rust
\u{60A3}
Go
\u60A3

Web

CSS
\0060A3
HtmlDecimal
患
HtmlHexadecimal
患
Url
%E6%82%A3

Code

MD5
6ecb88db63a630dbb9efd996a2abbae9
Sha1
1450f26b8e31b2f1845dc5ddc4594dbf6a0d59a9
Base64
5oKj

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u60A3';
console.log(char);  // Output: 患

Java:

char c = '\u60A3';
System.out.println(c);  // Output: 患

JSON:

{"text": "\u60A3"}  // Value: 患

Python:

char = '\u60A3'
print(char)  # Output: 患

Perl:

my $char = "\x{60A3}";
print $char;  # Output: 患

PHP:

$char = "\x{60A3}";
echo $char;  // Output: 患

Ruby:

char = "\u{60A3}"
puts char  # Output: 患

Rust:

let c = '\u{60A3}';
println!("{}", c);  // Output: 患

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0060A3";  /* Display: 患 */
}

HTML Decimal:

<p>HTML decimal: &#24739;</p>  <!-- Display: 患 -->

HTML Hexadecimal:

<p>HTML hex: &#x60A3;</p>  <!-- Display: 患 -->

URL Encoding:

// 患 URL encoding
https://unicodefinder.com/search.php?query=%E6%82%A3

Encodings

MD5:

6ecb88db63a630dbb9efd996a2abbae9

SHA1:

1450f26b8e31b2f1845dc5ddc4594dbf6a0d59a9

Base64:

5oKj