Unicode Finder

"吜" U+541C(CJK UNIFIED IDEOGRAPH-541C)

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

Programming

C
\u541C
JavaScript
\u541C
Java
\u541C
Json
\u541C
Python
\u541C
Perl
\x{541C}
PHP
\x{541C}
Ruby
\u{541C}
Rust
\u{541C}
Go
\u541C

Web

CSS
\00541C
HtmlDecimal
吜
HtmlHexadecimal
吜
Url
%E5%90%9C

Code

MD5
91e5549d4b75d513dd6652f5d38ceff6
Sha1
c8b844b27cdfbe4b86961a08155f69e4e7b2ca27
Base64
5ZCc

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u541C';
console.log(char);  // Output: 吜

Java:

char c = '\u541C';
System.out.println(c);  // Output: 吜

JSON:

{"text": "\u541C"}  // Value: 吜

Python:

char = '\u541C'
print(char)  # Output: 吜

Perl:

my $char = "\x{541C}";
print $char;  # Output: 吜

PHP:

$char = "\x{541C}";
echo $char;  // Output: 吜

Ruby:

char = "\u{541C}"
puts char  # Output: 吜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#21532;</p>  <!-- Display: 吜 -->

HTML Hexadecimal:

<p>HTML hex: &#x541C;</p>  <!-- Display: 吜 -->

URL Encoding:

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

Encodings

MD5:

91e5549d4b75d513dd6652f5d38ceff6

SHA1:

c8b844b27cdfbe4b86961a08155f69e4e7b2ca27

Base64:

5ZCc