Unicode Finder

"吃" U+5403(CJK UNIFIED IDEOGRAPH-5403)

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

Programming

C
\u5403
JavaScript
\u5403
Java
\u5403
Json
\u5403
Python
\u5403
Perl
\x{5403}
PHP
\x{5403}
Ruby
\u{5403}
Rust
\u{5403}
Go
\u5403

Web

CSS
\005403
HtmlDecimal
吃
HtmlHexadecimal
吃
Url
%E5%90%83

Code

MD5
a52b77dfc6b7fc2cd33933e7b70e0d1a
Sha1
a10d4d5a63e66defe4c65fdb35ff27652902c2f8
Base64
5ZCD

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5403';
console.log(char);  // Output: 吃

Java:

char c = '\u5403';
System.out.println(c);  // Output: 吃

JSON:

{"text": "\u5403"}  // Value: 吃

Python:

char = '\u5403'
print(char)  # Output: 吃

Perl:

my $char = "\x{5403}";
print $char;  # Output: 吃

PHP:

$char = "\x{5403}";
echo $char;  // Output: 吃

Ruby:

char = "\u{5403}"
puts char  # Output: 吃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005403";  /* Display: 吃 */
}

HTML Decimal:

<p>HTML decimal: &#21507;</p>  <!-- Display: 吃 -->

HTML Hexadecimal:

<p>HTML hex: &#x5403;</p>  <!-- Display: 吃 -->

URL Encoding:

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

Encodings

MD5:

a52b77dfc6b7fc2cd33933e7b70e0d1a

SHA1:

a10d4d5a63e66defe4c65fdb35ff27652902c2f8

Base64:

5ZCD