Unicode Finder

"鱕" U+9C55(CJK UNIFIED IDEOGRAPH-9C55)

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

Programming

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

Web

CSS
\009C55
HtmlDecimal
鱕
HtmlHexadecimal
鱕
Url
%E9%B1%95

Code

MD5
8c2b754b10c50e1799cca74d9a0ee133
Sha1
0f118438932b2d5dbde2fc3b8f83bd56c471fd6e
Base64
6bGV

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9C55';
console.log(char);  // Output: 鱕

Java:

char c = '\u9C55';
System.out.println(c);  // Output: 鱕

JSON:

{"text": "\u9C55"}  // Value: 鱕

Python:

char = '\u9C55'
print(char)  # Output: 鱕

Perl:

my $char = "\x{9C55}";
print $char;  # Output: 鱕

PHP:

$char = "\x{9C55}";
echo $char;  // Output: 鱕

Ruby:

char = "\u{9C55}"
puts char  # Output: 鱕

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40021;</p>  <!-- Display: 鱕 -->

HTML Hexadecimal:

<p>HTML hex: &#x9C55;</p>  <!-- Display: 鱕 -->

URL Encoding:

// 鱕 URL encoding
https://unicodefinder.com/search.php?query=%E9%B1%95

Encodings

MD5:

8c2b754b10c50e1799cca74d9a0ee133

SHA1:

0f118438932b2d5dbde2fc3b8f83bd56c471fd6e

Base64:

6bGV