Unicode Finder

"鰙" U+9C19(CJK UNIFIED IDEOGRAPH-9C19)

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

Programming

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

Web

CSS
\009C19
HtmlDecimal
鰙
HtmlHexadecimal
鰙
Url
%E9%B0%99

Code

MD5
0d4361399ad1ccbcdd9ff27816c6a916
Sha1
1fa4ab5f40a94c6cccac8adce252b191832e47b2
Base64
6bCZ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9C19';
console.log(char);  // Output: 鰙

Java:

char c = '\u9C19';
System.out.println(c);  // Output: 鰙

JSON:

{"text": "\u9C19"}  // Value: 鰙

Python:

char = '\u9C19'
print(char)  # Output: 鰙

Perl:

my $char = "\x{9C19}";
print $char;  # Output: 鰙

PHP:

$char = "\x{9C19}";
echo $char;  // Output: 鰙

Ruby:

char = "\u{9C19}"
puts char  # Output: 鰙

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39961;</p>  <!-- Display: 鰙 -->

HTML Hexadecimal:

<p>HTML hex: &#x9C19;</p>  <!-- Display: 鰙 -->

URL Encoding:

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

Encodings

MD5:

0d4361399ad1ccbcdd9ff27816c6a916

SHA1:

1fa4ab5f40a94c6cccac8adce252b191832e47b2

Base64:

6bCZ