Unicode Finder

"鲀" U+9C80(CJK UNIFIED IDEOGRAPH-9C80)

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

Programming

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

Web

CSS
\009C80
HtmlDecimal
鲀
HtmlHexadecimal
鲀
Url
%E9%B2%80

Code

MD5
1a3e8ffdcd97354f4159b3572e3c4ee6
Sha1
97b625bfb34307560f76f3a265ed62f6333398d7
Base64
6bKA

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9C80';
console.log(char);  // Output: 鲀

Java:

char c = '\u9C80';
System.out.println(c);  // Output: 鲀

JSON:

{"text": "\u9C80"}  // Value: 鲀

Python:

char = '\u9C80'
print(char)  # Output: 鲀

Perl:

my $char = "\x{9C80}";
print $char;  # Output: 鲀

PHP:

$char = "\x{9C80}";
echo $char;  // Output: 鲀

Ruby:

char = "\u{9C80}"
puts char  # Output: 鲀

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40064;</p>  <!-- Display: 鲀 -->

HTML Hexadecimal:

<p>HTML hex: &#x9C80;</p>  <!-- Display: 鲀 -->

URL Encoding:

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

Encodings

MD5:

1a3e8ffdcd97354f4159b3572e3c4ee6

SHA1:

97b625bfb34307560f76f3a265ed62f6333398d7

Base64:

6bKA