Unicode Finder

"鲘" U+9C98(CJK UNIFIED IDEOGRAPH-9C98)

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

Programming

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

Web

CSS
\009C98
HtmlDecimal
鲘
HtmlHexadecimal
鲘
Url
%E9%B2%98

Code

MD5
fa5d7d69d3265471e7eaeb31b4607884
Sha1
487077d1f8124166c5f85f00be6ec92014e57152
Base64
6bKY

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9C98';
console.log(char);  // Output: 鲘

Java:

char c = '\u9C98';
System.out.println(c);  // Output: 鲘

JSON:

{"text": "\u9C98"}  // Value: 鲘

Python:

char = '\u9C98'
print(char)  # Output: 鲘

Perl:

my $char = "\x{9C98}";
print $char;  # Output: 鲘

PHP:

$char = "\x{9C98}";
echo $char;  // Output: 鲘

Ruby:

char = "\u{9C98}"
puts char  # Output: 鲘

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40088;</p>  <!-- Display: 鲘 -->

HTML Hexadecimal:

<p>HTML hex: &#x9C98;</p>  <!-- Display: 鲘 -->

URL Encoding:

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

Encodings

MD5:

fa5d7d69d3265471e7eaeb31b4607884

SHA1:

487077d1f8124166c5f85f00be6ec92014e57152

Base64:

6bKY