Unicode Finder

"咇" U+5487(CJK UNIFIED IDEOGRAPH-5487)

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

Programming

C
\u5487
JavaScript
\u5487
Java
\u5487
Json
\u5487
Python
\u5487
Perl
\x{5487}
PHP
\x{5487}
Ruby
\u{5487}
Rust
\u{5487}
Go
\u5487

Web

CSS
\005487
HtmlDecimal
咇
HtmlHexadecimal
咇
Url
%E5%92%87

Code

MD5
0e7ef3bfd47d85e5290034b08a96f487
Sha1
403a1067ed453b5bfcc3a6c5f334f884e0df4de4
Base64
5ZKH

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5487';
console.log(char);  // Output: 咇

Java:

char c = '\u5487';
System.out.println(c);  // Output: 咇

JSON:

{"text": "\u5487"}  // Value: 咇

Python:

char = '\u5487'
print(char)  # Output: 咇

Perl:

my $char = "\x{5487}";
print $char;  # Output: 咇

PHP:

$char = "\x{5487}";
echo $char;  // Output: 咇

Ruby:

char = "\u{5487}"
puts char  # Output: 咇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005487";  /* Display: 咇 */
}

HTML Decimal:

<p>HTML decimal: &#21639;</p>  <!-- Display: 咇 -->

HTML Hexadecimal:

<p>HTML hex: &#x5487;</p>  <!-- Display: 咇 -->

URL Encoding:

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

Encodings

MD5:

0e7ef3bfd47d85e5290034b08a96f487

SHA1:

403a1067ed453b5bfcc3a6c5f334f884e0df4de4

Base64:

5ZKH