Unicode Finder

"吥" U+5425(CJK UNIFIED IDEOGRAPH-5425)

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

Programming

C
\u5425
JavaScript
\u5425
Java
\u5425
Json
\u5425
Python
\u5425
Perl
\x{5425}
PHP
\x{5425}
Ruby
\u{5425}
Rust
\u{5425}
Go
\u5425

Web

CSS
\005425
HtmlDecimal
吥
HtmlHexadecimal
吥
Url
%E5%90%A5

Code

MD5
a2b7c757e070989f7144a1f3b835a1c4
Sha1
eadcbadaa4a70db46a3b55f7445680c824da9433
Base64
5ZCl

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5425';
console.log(char);  // Output: 吥

Java:

char c = '\u5425';
System.out.println(c);  // Output: 吥

JSON:

{"text": "\u5425"}  // Value: 吥

Python:

char = '\u5425'
print(char)  # Output: 吥

Perl:

my $char = "\x{5425}";
print $char;  # Output: 吥

PHP:

$char = "\x{5425}";
echo $char;  // Output: 吥

Ruby:

char = "\u{5425}"
puts char  # Output: 吥

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005425";  /* Display: 吥 */
}

HTML Decimal:

<p>HTML decimal: &#21541;</p>  <!-- Display: 吥 -->

HTML Hexadecimal:

<p>HTML hex: &#x5425;</p>  <!-- Display: 吥 -->

URL Encoding:

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

Encodings

MD5:

a2b7c757e070989f7144a1f3b835a1c4

SHA1:

eadcbadaa4a70db46a3b55f7445680c824da9433

Base64:

5ZCl