Unicode Finder

"鰢" U+9C22(CJK UNIFIED IDEOGRAPH-9C22)

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

Programming

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

Web

CSS
\009C22
HtmlDecimal
鰢
HtmlHexadecimal
鰢
Url
%E9%B0%A2

Code

MD5
0d8c541ede31e803a2e89039bd0508bd
Sha1
eb631c56a0477b70a1d5a4f626bafe5279746744
Base64
6bCi

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9C22';
console.log(char);  // Output: 鰢

Java:

char c = '\u9C22';
System.out.println(c);  // Output: 鰢

JSON:

{"text": "\u9C22"}  // Value: 鰢

Python:

char = '\u9C22'
print(char)  # Output: 鰢

Perl:

my $char = "\x{9C22}";
print $char;  # Output: 鰢

PHP:

$char = "\x{9C22}";
echo $char;  // Output: 鰢

Ruby:

char = "\u{9C22}"
puts char  # Output: 鰢

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39970;</p>  <!-- Display: 鰢 -->

HTML Hexadecimal:

<p>HTML hex: &#x9C22;</p>  <!-- Display: 鰢 -->

URL Encoding:

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

Encodings

MD5:

0d8c541ede31e803a2e89039bd0508bd

SHA1:

eb631c56a0477b70a1d5a4f626bafe5279746744

Base64:

6bCi