Unicode Finder

"鱈" U+9C48(CJK UNIFIED IDEOGRAPH-9C48)

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

Programming

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

Web

CSS
\009C48
HtmlDecimal
鱈
HtmlHexadecimal
鱈
Url
%E9%B1%88

Code

MD5
df465c5e953e895812155edee21e5b94
Sha1
b89fbc0d54442aba76d9fc37ad8f4ce659c27849
Base64
6bGI

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9C48';
console.log(char);  // Output: 鱈

Java:

char c = '\u9C48';
System.out.println(c);  // Output: 鱈

JSON:

{"text": "\u9C48"}  // Value: 鱈

Python:

char = '\u9C48'
print(char)  # Output: 鱈

Perl:

my $char = "\x{9C48}";
print $char;  # Output: 鱈

PHP:

$char = "\x{9C48}";
echo $char;  // Output: 鱈

Ruby:

char = "\u{9C48}"
puts char  # Output: 鱈

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40008;</p>  <!-- Display: 鱈 -->

HTML Hexadecimal:

<p>HTML hex: &#x9C48;</p>  <!-- Display: 鱈 -->

URL Encoding:

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

Encodings

MD5:

df465c5e953e895812155edee21e5b94

SHA1:

b89fbc0d54442aba76d9fc37ad8f4ce659c27849

Base64:

6bGI