Unicode Finder

"同" U+540C(CJK UNIFIED IDEOGRAPH-540C)

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

Programming

C
\u540C
JavaScript
\u540C
Java
\u540C
Json
\u540C
Python
\u540C
Perl
\x{540C}
PHP
\x{540C}
Ruby
\u{540C}
Rust
\u{540C}
Go
\u540C

Web

CSS
\00540C
HtmlDecimal
同
HtmlHexadecimal
同
Url
%E5%90%8C

Code

MD5
49cd6e0ab7c4060390f2cc3a555aebc5
Sha1
0b8b919983f54af5402acbb18545ff6da94e54c3
Base64
5ZCM

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u540C';
console.log(char);  // Output: 同

Java:

char c = '\u540C';
System.out.println(c);  // Output: 同

JSON:

{"text": "\u540C"}  // Value: 同

Python:

char = '\u540C'
print(char)  # Output: 同

Perl:

my $char = "\x{540C}";
print $char;  # Output: 同

PHP:

$char = "\x{540C}";
echo $char;  // Output: 同

Ruby:

char = "\u{540C}"
puts char  # Output: 同

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#21516;</p>  <!-- Display: 同 -->

HTML Hexadecimal:

<p>HTML hex: &#x540C;</p>  <!-- Display: 同 -->

URL Encoding:

// 同 URL encoding
https://unicodefinder.com/search.php?query=%E5%90%8C

Encodings

MD5:

49cd6e0ab7c4060390f2cc3a555aebc5

SHA1:

0b8b919983f54af5402acbb18545ff6da94e54c3

Base64:

5ZCM