Unicode Finder

"鱠" U+9C60(CJK UNIFIED IDEOGRAPH-9C60)

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

Programming

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

Web

CSS
\009C60
HtmlDecimal
鱠
HtmlHexadecimal
鱠
Url
%E9%B1%A0

Code

MD5
6d56e9824f3330f1c273f3eba165c70d
Sha1
a6e40602bd8b172ddcb3edbd0627add47a4906f6
Base64
6bGg

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9C60';
console.log(char);  // Output: 鱠

Java:

char c = '\u9C60';
System.out.println(c);  // Output: 鱠

JSON:

{"text": "\u9C60"}  // Value: 鱠

Python:

char = '\u9C60'
print(char)  # Output: 鱠

Perl:

my $char = "\x{9C60}";
print $char;  # Output: 鱠

PHP:

$char = "\x{9C60}";
echo $char;  // Output: 鱠

Ruby:

char = "\u{9C60}"
puts char  # Output: 鱠

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40032;</p>  <!-- Display: 鱠 -->

HTML Hexadecimal:

<p>HTML hex: &#x9C60;</p>  <!-- Display: 鱠 -->

URL Encoding:

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

Encodings

MD5:

6d56e9824f3330f1c273f3eba165c70d

SHA1:

a6e40602bd8b172ddcb3edbd0627add47a4906f6

Base64:

6bGg