Unicode Finder

"鰃" U+9C03(CJK UNIFIED IDEOGRAPH-9C03)

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

Programming

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

Web

CSS
\009C03
HtmlDecimal
鰃
HtmlHexadecimal
鰃
Url
%E9%B0%83

Code

MD5
c913ab6e7311e1d124b11123daa1495e
Sha1
b7f552b6422f4722d3c7216dd0e1e1808783f0b7
Base64
6bCD

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9C03';
console.log(char);  // Output: 鰃

Java:

char c = '\u9C03';
System.out.println(c);  // Output: 鰃

JSON:

{"text": "\u9C03"}  // Value: 鰃

Python:

char = '\u9C03'
print(char)  # Output: 鰃

Perl:

my $char = "\x{9C03}";
print $char;  # Output: 鰃

PHP:

$char = "\x{9C03}";
echo $char;  // Output: 鰃

Ruby:

char = "\u{9C03}"
puts char  # Output: 鰃

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39939;</p>  <!-- Display: 鰃 -->

HTML Hexadecimal:

<p>HTML hex: &#x9C03;</p>  <!-- Display: 鰃 -->

URL Encoding:

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

Encodings

MD5:

c913ab6e7311e1d124b11123daa1495e

SHA1:

b7f552b6422f4722d3c7216dd0e1e1808783f0b7

Base64:

6bCD