Unicode Finder

"鱥" U+9C65(CJK UNIFIED IDEOGRAPH-9C65)

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

Programming

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

Web

CSS
\009C65
HtmlDecimal
鱥
HtmlHexadecimal
鱥
Url
%E9%B1%A5

Code

MD5
494362a5dda2872f915b63a1dddcdb13
Sha1
0954255e7b30f9a4cdf074c457bb346a3297f373
Base64
6bGl

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9C65';
console.log(char);  // Output: 鱥

Java:

char c = '\u9C65';
System.out.println(c);  // Output: 鱥

JSON:

{"text": "\u9C65"}  // Value: 鱥

Python:

char = '\u9C65'
print(char)  # Output: 鱥

Perl:

my $char = "\x{9C65}";
print $char;  # Output: 鱥

PHP:

$char = "\x{9C65}";
echo $char;  // Output: 鱥

Ruby:

char = "\u{9C65}"
puts char  # Output: 鱥

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40037;</p>  <!-- Display: 鱥 -->

HTML Hexadecimal:

<p>HTML hex: &#x9C65;</p>  <!-- Display: 鱥 -->

URL Encoding:

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

Encodings

MD5:

494362a5dda2872f915b63a1dddcdb13

SHA1:

0954255e7b30f9a4cdf074c457bb346a3297f373

Base64:

6bGl