Unicode Finder

"吘" U+5418(CJK UNIFIED IDEOGRAPH-5418)

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

Programming

C
\u5418
JavaScript
\u5418
Java
\u5418
Json
\u5418
Python
\u5418
Perl
\x{5418}
PHP
\x{5418}
Ruby
\u{5418}
Rust
\u{5418}
Go
\u5418

Web

CSS
\005418
HtmlDecimal
吘
HtmlHexadecimal
吘
Url
%E5%90%98

Code

MD5
0d8c955b7646355c9dfc955476c5fad3
Sha1
c45c00da790f0715820bfd748890e7f3d2f99640
Base64
5ZCY

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5418';
console.log(char);  // Output: 吘

Java:

char c = '\u5418';
System.out.println(c);  // Output: 吘

JSON:

{"text": "\u5418"}  // Value: 吘

Python:

char = '\u5418'
print(char)  # Output: 吘

Perl:

my $char = "\x{5418}";
print $char;  # Output: 吘

PHP:

$char = "\x{5418}";
echo $char;  // Output: 吘

Ruby:

char = "\u{5418}"
puts char  # Output: 吘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005418";  /* Display: 吘 */
}

HTML Decimal:

<p>HTML decimal: &#21528;</p>  <!-- Display: 吘 -->

HTML Hexadecimal:

<p>HTML hex: &#x5418;</p>  <!-- Display: 吘 -->

URL Encoding:

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

Encodings

MD5:

0d8c955b7646355c9dfc955476c5fad3

SHA1:

c45c00da790f0715820bfd748890e7f3d2f99640

Base64:

5ZCY