Unicode Finder

"鱟" U+9C5F(CJK UNIFIED IDEOGRAPH-9C5F)

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

Programming

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

Web

CSS
\009C5F
HtmlDecimal
鱟
HtmlHexadecimal
鱟
Url
%E9%B1%9F

Code

MD5
8bb1133936e6458387721cd9469e7f57
Sha1
8b7c457d1f38e2e9f192e3c42e395708f1168447
Base64
6bGf

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9C5F';
console.log(char);  // Output: 鱟

Java:

char c = '\u9C5F';
System.out.println(c);  // Output: 鱟

JSON:

{"text": "\u9C5F"}  // Value: 鱟

Python:

char = '\u9C5F'
print(char)  # Output: 鱟

Perl:

my $char = "\x{9C5F}";
print $char;  # Output: 鱟

PHP:

$char = "\x{9C5F}";
echo $char;  // Output: 鱟

Ruby:

char = "\u{9C5F}"
puts char  # Output: 鱟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40031;</p>  <!-- Display: 鱟 -->

HTML Hexadecimal:

<p>HTML hex: &#x9C5F;</p>  <!-- Display: 鱟 -->

URL Encoding:

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

Encodings

MD5:

8bb1133936e6458387721cd9469e7f57

SHA1:

8b7c457d1f38e2e9f192e3c42e395708f1168447

Base64:

6bGf