Unicode Finder

"鱔" U+9C54(CJK UNIFIED IDEOGRAPH-9C54)

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

Programming

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

Web

CSS
\009C54
HtmlDecimal
鱔
HtmlHexadecimal
鱔
Url
%E9%B1%94

Code

MD5
6d91e0433a417fe73df10c24e96035af
Sha1
f58894752d22ce937360b212cae7b8daea395d6c
Base64
6bGU

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9C54';
console.log(char);  // Output: 鱔

Java:

char c = '\u9C54';
System.out.println(c);  // Output: 鱔

JSON:

{"text": "\u9C54"}  // Value: 鱔

Python:

char = '\u9C54'
print(char)  # Output: 鱔

Perl:

my $char = "\x{9C54}";
print $char;  # Output: 鱔

PHP:

$char = "\x{9C54}";
echo $char;  // Output: 鱔

Ruby:

char = "\u{9C54}"
puts char  # Output: 鱔

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40020;</p>  <!-- Display: 鱔 -->

HTML Hexadecimal:

<p>HTML hex: &#x9C54;</p>  <!-- Display: 鱔 -->

URL Encoding:

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

Encodings

MD5:

6d91e0433a417fe73df10c24e96035af

SHA1:

f58894752d22ce937360b212cae7b8daea395d6c

Base64:

6bGU