Unicode Finder

"吂" U+5402(CJK UNIFIED IDEOGRAPH-5402)

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

Programming

C
\u5402
JavaScript
\u5402
Java
\u5402
Json
\u5402
Python
\u5402
Perl
\x{5402}
PHP
\x{5402}
Ruby
\u{5402}
Rust
\u{5402}
Go
\u5402

Web

CSS
\005402
HtmlDecimal
吂
HtmlHexadecimal
吂
Url
%E5%90%82

Code

MD5
4ece33a791d94ddd83d8cb0c42034fbb
Sha1
b575a49feb56c9927fe720b5d6084165c529ed73
Base64
5ZCC

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5402';
console.log(char);  // Output: 吂

Java:

char c = '\u5402';
System.out.println(c);  // Output: 吂

JSON:

{"text": "\u5402"}  // Value: 吂

Python:

char = '\u5402'
print(char)  # Output: 吂

Perl:

my $char = "\x{5402}";
print $char;  # Output: 吂

PHP:

$char = "\x{5402}";
echo $char;  // Output: 吂

Ruby:

char = "\u{5402}"
puts char  # Output: 吂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005402";  /* Display: 吂 */
}

HTML Decimal:

<p>HTML decimal: &#21506;</p>  <!-- Display: 吂 -->

HTML Hexadecimal:

<p>HTML hex: &#x5402;</p>  <!-- Display: 吂 -->

URL Encoding:

// 吂 URL encoding
https://unicodefinder.com/search.php?query=%E5%90%82

Encodings

MD5:

4ece33a791d94ddd83d8cb0c42034fbb

SHA1:

b575a49feb56c9927fe720b5d6084165c529ed73

Base64:

5ZCC