Unicode Finder

"咈" U+5488(CJK UNIFIED IDEOGRAPH-5488)

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

Programming

C
\u5488
JavaScript
\u5488
Java
\u5488
Json
\u5488
Python
\u5488
Perl
\x{5488}
PHP
\x{5488}
Ruby
\u{5488}
Rust
\u{5488}
Go
\u5488

Web

CSS
\005488
HtmlDecimal
咈
HtmlHexadecimal
咈
Url
%E5%92%88

Code

MD5
2b5227904a7bd0e6955461abece584dc
Sha1
c412cf3cdfed42895aa7586c6d329a0f1d6b5861
Base64
5ZKI

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5488';
console.log(char);  // Output: 咈

Java:

char c = '\u5488';
System.out.println(c);  // Output: 咈

JSON:

{"text": "\u5488"}  // Value: 咈

Python:

char = '\u5488'
print(char)  # Output: 咈

Perl:

my $char = "\x{5488}";
print $char;  # Output: 咈

PHP:

$char = "\x{5488}";
echo $char;  // Output: 咈

Ruby:

char = "\u{5488}"
puts char  # Output: 咈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005488";  /* Display: 咈 */
}

HTML Decimal:

<p>HTML decimal: &#21640;</p>  <!-- Display: 咈 -->

HTML Hexadecimal:

<p>HTML hex: &#x5488;</p>  <!-- Display: 咈 -->

URL Encoding:

// 咈 URL encoding
https://unicodefinder.com/search.php?query=%E5%92%88

Encodings

MD5:

2b5227904a7bd0e6955461abece584dc

SHA1:

c412cf3cdfed42895aa7586c6d329a0f1d6b5861

Base64:

5ZKI