Unicode Finder

"鲈" U+9C88(CJK UNIFIED IDEOGRAPH-9C88)

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

Programming

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

Web

CSS
\009C88
HtmlDecimal
鲈
HtmlHexadecimal
鲈
Url
%E9%B2%88

Code

MD5
30f3b3eed9a73e650643565f6b771212
Sha1
fef9aff6e95723045a95ded17c3a1f136bda9aa4
Base64
6bKI

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9C88';
console.log(char);  // Output: 鲈

Java:

char c = '\u9C88';
System.out.println(c);  // Output: 鲈

JSON:

{"text": "\u9C88"}  // Value: 鲈

Python:

char = '\u9C88'
print(char)  # Output: 鲈

Perl:

my $char = "\x{9C88}";
print $char;  # Output: 鲈

PHP:

$char = "\x{9C88}";
echo $char;  // Output: 鲈

Ruby:

char = "\u{9C88}"
puts char  # Output: 鲈

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40072;</p>  <!-- Display: 鲈 -->

HTML Hexadecimal:

<p>HTML hex: &#x9C88;</p>  <!-- Display: 鲈 -->

URL Encoding:

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

Encodings

MD5:

30f3b3eed9a73e650643565f6b771212

SHA1:

fef9aff6e95723045a95ded17c3a1f136bda9aa4

Base64:

6bKI