Unicode Finder

"鰀" U+9C00(CJK UNIFIED IDEOGRAPH-9C00)

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

Programming

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

Web

CSS
\009C00
HtmlDecimal
鰀
HtmlHexadecimal
鰀
Url
%E9%B0%80

Code

MD5
2e6208ec987e39651edf1dfc19ad900e
Sha1
d4f725765d14ba2fe75030af87496db091d61808
Base64
6bCA

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9C00';
console.log(char);  // Output: 鰀

Java:

char c = '\u9C00';
System.out.println(c);  // Output: 鰀

JSON:

{"text": "\u9C00"}  // Value: 鰀

Python:

char = '\u9C00'
print(char)  # Output: 鰀

Perl:

my $char = "\x{9C00}";
print $char;  # Output: 鰀

PHP:

$char = "\x{9C00}";
echo $char;  // Output: 鰀

Ruby:

char = "\u{9C00}"
puts char  # Output: 鰀

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39936;</p>  <!-- Display: 鰀 -->

HTML Hexadecimal:

<p>HTML hex: &#x9C00;</p>  <!-- Display: 鰀 -->

URL Encoding:

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

Encodings

MD5:

2e6208ec987e39651edf1dfc19ad900e

SHA1:

d4f725765d14ba2fe75030af87496db091d61808

Base64:

6bCA