Unicode Finder

"鱁" U+9C41(CJK UNIFIED IDEOGRAPH-9C41)

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

Programming

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

Web

CSS
\009C41
HtmlDecimal
鱁
HtmlHexadecimal
鱁
Url
%E9%B1%81

Code

MD5
f177fe39fff883a8469d432241982a0e
Sha1
e116ffbb966aab158498906c687edda976c6f7f4
Base64
6bGB

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9C41';
console.log(char);  // Output: 鱁

Java:

char c = '\u9C41';
System.out.println(c);  // Output: 鱁

JSON:

{"text": "\u9C41"}  // Value: 鱁

Python:

char = '\u9C41'
print(char)  # Output: 鱁

Perl:

my $char = "\x{9C41}";
print $char;  # Output: 鱁

PHP:

$char = "\x{9C41}";
echo $char;  // Output: 鱁

Ruby:

char = "\u{9C41}"
puts char  # Output: 鱁

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40001;</p>  <!-- Display: 鱁 -->

HTML Hexadecimal:

<p>HTML hex: &#x9C41;</p>  <!-- Display: 鱁 -->

URL Encoding:

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

Encodings

MD5:

f177fe39fff883a8469d432241982a0e

SHA1:

e116ffbb966aab158498906c687edda976c6f7f4

Base64:

6bGB