Unicode Finder

"鱂" U+9C42(CJK UNIFIED IDEOGRAPH-9C42)

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

Programming

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

Web

CSS
\009C42
HtmlDecimal
鱂
HtmlHexadecimal
鱂
Url
%E9%B1%82

Code

MD5
febdf28951fcab8706d25f2a6da9b13a
Sha1
2c2721dd2656f7f2a91868786e97daa34997c1f7
Base64
6bGC

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9C42';
console.log(char);  // Output: 鱂

Java:

char c = '\u9C42';
System.out.println(c);  // Output: 鱂

JSON:

{"text": "\u9C42"}  // Value: 鱂

Python:

char = '\u9C42'
print(char)  # Output: 鱂

Perl:

my $char = "\x{9C42}";
print $char;  # Output: 鱂

PHP:

$char = "\x{9C42}";
echo $char;  // Output: 鱂

Ruby:

char = "\u{9C42}"
puts char  # Output: 鱂

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40002;</p>  <!-- Display: 鱂 -->

HTML Hexadecimal:

<p>HTML hex: &#x9C42;</p>  <!-- Display: 鱂 -->

URL Encoding:

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

Encodings

MD5:

febdf28951fcab8706d25f2a6da9b13a

SHA1:

2c2721dd2656f7f2a91868786e97daa34997c1f7

Base64:

6bGC