Unicode Finder

"吉" U+5409(CJK UNIFIED IDEOGRAPH-5409)

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

Programming

C
\u5409
JavaScript
\u5409
Java
\u5409
Json
\u5409
Python
\u5409
Perl
\x{5409}
PHP
\x{5409}
Ruby
\u{5409}
Rust
\u{5409}
Go
\u5409

Web

CSS
\005409
HtmlDecimal
吉
HtmlHexadecimal
吉
Url
%E5%90%89

Code

MD5
cd45464d9deaf775b559f840220c6880
Sha1
bf3d1661e1f7475517011f83c6edad2df0c3111c
Base64
5ZCJ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5409';
console.log(char);  // Output: 吉

Java:

char c = '\u5409';
System.out.println(c);  // Output: 吉

JSON:

{"text": "\u5409"}  // Value: 吉

Python:

char = '\u5409'
print(char)  # Output: 吉

Perl:

my $char = "\x{5409}";
print $char;  # Output: 吉

PHP:

$char = "\x{5409}";
echo $char;  // Output: 吉

Ruby:

char = "\u{5409}"
puts char  # Output: 吉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005409";  /* Display: 吉 */
}

HTML Decimal:

<p>HTML decimal: &#21513;</p>  <!-- Display: 吉 -->

HTML Hexadecimal:

<p>HTML hex: &#x5409;</p>  <!-- Display: 吉 -->

URL Encoding:

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

Encodings

MD5:

cd45464d9deaf775b559f840220c6880

SHA1:

bf3d1661e1f7475517011f83c6edad2df0c3111c

Base64:

5ZCJ