Unicode Finder

"鱛" U+9C5B(CJK UNIFIED IDEOGRAPH-9C5B)

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

Programming

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

Web

CSS
\009C5B
HtmlDecimal
鱛
HtmlHexadecimal
鱛
Url
%E9%B1%9B

Code

MD5
41a6ddf06c7245834fa904e85568bbda
Sha1
8c50fd4d0226d930926e76f56208d1d5271dee04
Base64
6bGb

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9C5B';
console.log(char);  // Output: 鱛

Java:

char c = '\u9C5B';
System.out.println(c);  // Output: 鱛

JSON:

{"text": "\u9C5B"}  // Value: 鱛

Python:

char = '\u9C5B'
print(char)  # Output: 鱛

Perl:

my $char = "\x{9C5B}";
print $char;  # Output: 鱛

PHP:

$char = "\x{9C5B}";
echo $char;  // Output: 鱛

Ruby:

char = "\u{9C5B}"
puts char  # Output: 鱛

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40027;</p>  <!-- Display: 鱛 -->

HTML Hexadecimal:

<p>HTML hex: &#x9C5B;</p>  <!-- Display: 鱛 -->

URL Encoding:

// 鱛 URL encoding
https://unicodefinder.com/search.php?query=%E9%B1%9B

Encodings

MD5:

41a6ddf06c7245834fa904e85568bbda

SHA1:

8c50fd4d0226d930926e76f56208d1d5271dee04

Base64:

6bGb