Unicode Finder

"鰁" U+9C01(CJK UNIFIED IDEOGRAPH-9C01)

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

Programming

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

Web

CSS
\009C01
HtmlDecimal
鰁
HtmlHexadecimal
鰁
Url
%E9%B0%81

Code

MD5
6a6c57ba071287e50e6c7e3525500865
Sha1
4457277067568b8392f322f806c41d7596642f74
Base64
6bCB

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9C01';
console.log(char);  // Output: 鰁

Java:

char c = '\u9C01';
System.out.println(c);  // Output: 鰁

JSON:

{"text": "\u9C01"}  // Value: 鰁

Python:

char = '\u9C01'
print(char)  # Output: 鰁

Perl:

my $char = "\x{9C01}";
print $char;  # Output: 鰁

PHP:

$char = "\x{9C01}";
echo $char;  // Output: 鰁

Ruby:

char = "\u{9C01}"
puts char  # Output: 鰁

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39937;</p>  <!-- Display: 鰁 -->

HTML Hexadecimal:

<p>HTML hex: &#x9C01;</p>  <!-- Display: 鰁 -->

URL Encoding:

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

Encodings

MD5:

6a6c57ba071287e50e6c7e3525500865

SHA1:

4457277067568b8392f322f806c41d7596642f74

Base64:

6bCB