Unicode Finder

"啔" U+5554(CJK UNIFIED IDEOGRAPH-5554)

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

Programming

C
\u5554
JavaScript
\u5554
Java
\u5554
Json
\u5554
Python
\u5554
Perl
\x{5554}
PHP
\x{5554}
Ruby
\u{5554}
Rust
\u{5554}
Go
\u5554

Web

CSS
\005554
HtmlDecimal
啔
HtmlHexadecimal
啔
Url
%E5%95%94

Code

MD5
3a8017bc31eb8f3383e34d3e7ed3402f
Sha1
8634abb6aafd685492d150b766e33562ec30ddb6
Base64
5ZWU

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5554';
console.log(char);  // Output: 啔

Java:

char c = '\u5554';
System.out.println(c);  // Output: 啔

JSON:

{"text": "\u5554"}  // Value: 啔

Python:

char = '\u5554'
print(char)  # Output: 啔

Perl:

my $char = "\x{5554}";
print $char;  # Output: 啔

PHP:

$char = "\x{5554}";
echo $char;  // Output: 啔

Ruby:

char = "\u{5554}"
puts char  # Output: 啔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005554";  /* Display: 啔 */
}

HTML Decimal:

<p>HTML decimal: &#21844;</p>  <!-- Display: 啔 -->

HTML Hexadecimal:

<p>HTML hex: &#x5554;</p>  <!-- Display: 啔 -->

URL Encoding:

// 啔 URL encoding
https://unicodefinder.com/search.php?query=%E5%95%94

Encodings

MD5:

3a8017bc31eb8f3383e34d3e7ed3402f

SHA1:

8634abb6aafd685492d150b766e33562ec30ddb6

Base64:

5ZWU