Unicode Finder

"鲇" U+9C87(CJK UNIFIED IDEOGRAPH-9C87)

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

Programming

C
\u9C87
JavaScript
\u9C87
Java
\u9C87
Json
\u9C87
Python
\u9C87
Perl
\x{9C87}
PHP
\x{9C87}
Ruby
\u{9C87}
Rust
\u{9C87}
Go
\u9C87

Web

CSS
\009C87
HtmlDecimal
鲇
HtmlHexadecimal
鲇
Url
%E9%B2%87

Code

MD5
57fb1f820f63142a6c8fd9314615e4bf
Sha1
12fc7c4a3926135fd0e319ff85d1badb253a2ad1
Base64
6bKH

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9C87';
console.log(char);  // Output: 鲇

Java:

char c = '\u9C87';
System.out.println(c);  // Output: 鲇

JSON:

{"text": "\u9C87"}  // Value: 鲇

Python:

char = '\u9C87'
print(char)  # Output: 鲇

Perl:

my $char = "\x{9C87}";
print $char;  # Output: 鲇

PHP:

$char = "\x{9C87}";
echo $char;  // Output: 鲇

Ruby:

char = "\u{9C87}"
puts char  # Output: 鲇

Rust:

let c = '\u{9C87}';
println!("{}", c);  // Output: 鲇

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009C87";  /* Display: 鲇 */
}

HTML Decimal:

<p>HTML decimal: &#40071;</p>  <!-- Display: 鲇 -->

HTML Hexadecimal:

<p>HTML hex: &#x9C87;</p>  <!-- Display: 鲇 -->

URL Encoding:

// 鲇 URL encoding
https://unicodefinder.com/search.php?query=%E9%B2%87

Encodings

MD5:

57fb1f820f63142a6c8fd9314615e4bf

SHA1:

12fc7c4a3926135fd0e319ff85d1badb253a2ad1

Base64:

6bKH