Unicode Finder

"鱌" U+9C4C(CJK UNIFIED IDEOGRAPH-9C4C)

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

Programming

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

Web

CSS
\009C4C
HtmlDecimal
鱌
HtmlHexadecimal
鱌
Url
%E9%B1%8C

Code

MD5
13486f9de001e73023b70e57a4896104
Sha1
e8fea0b4a05e45977adef08b9bbb66e84390daef
Base64
6bGM

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9C4C';
console.log(char);  // Output: 鱌

Java:

char c = '\u9C4C';
System.out.println(c);  // Output: 鱌

JSON:

{"text": "\u9C4C"}  // Value: 鱌

Python:

char = '\u9C4C'
print(char)  # Output: 鱌

Perl:

my $char = "\x{9C4C}";
print $char;  # Output: 鱌

PHP:

$char = "\x{9C4C}";
echo $char;  // Output: 鱌

Ruby:

char = "\u{9C4C}"
puts char  # Output: 鱌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40012;</p>  <!-- Display: 鱌 -->

HTML Hexadecimal:

<p>HTML hex: &#x9C4C;</p>  <!-- Display: 鱌 -->

URL Encoding:

// 鱌 URL encoding
https://unicodefinder.com/search.php?query=%E9%B1%8C

Encodings

MD5:

13486f9de001e73023b70e57a4896104

SHA1:

e8fea0b4a05e45977adef08b9bbb66e84390daef

Base64:

6bGM