Unicode Finder

"吙" U+5419(CJK UNIFIED IDEOGRAPH-5419)

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

Programming

C
\u5419
JavaScript
\u5419
Java
\u5419
Json
\u5419
Python
\u5419
Perl
\x{5419}
PHP
\x{5419}
Ruby
\u{5419}
Rust
\u{5419}
Go
\u5419

Web

CSS
\005419
HtmlDecimal
吙
HtmlHexadecimal
吙
Url
%E5%90%99

Code

MD5
12b20c7a3022709e1b94a1fada990f51
Sha1
1a353a07da2ec3f9c87c6092ac9c0891b17e50a1
Base64
5ZCZ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5419';
console.log(char);  // Output: 吙

Java:

char c = '\u5419';
System.out.println(c);  // Output: 吙

JSON:

{"text": "\u5419"}  // Value: 吙

Python:

char = '\u5419'
print(char)  # Output: 吙

Perl:

my $char = "\x{5419}";
print $char;  # Output: 吙

PHP:

$char = "\x{5419}";
echo $char;  // Output: 吙

Ruby:

char = "\u{5419}"
puts char  # Output: 吙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005419";  /* Display: 吙 */
}

HTML Decimal:

<p>HTML decimal: &#21529;</p>  <!-- Display: 吙 -->

HTML Hexadecimal:

<p>HTML hex: &#x5419;</p>  <!-- Display: 吙 -->

URL Encoding:

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

Encodings

MD5:

12b20c7a3022709e1b94a1fada990f51

SHA1:

1a353a07da2ec3f9c87c6092ac9c0891b17e50a1

Base64:

5ZCZ