Unicode Finder

"鲛" U+9C9B(CJK UNIFIED IDEOGRAPH-9C9B)

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

Programming

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

Web

CSS
\009C9B
HtmlDecimal
鲛
HtmlHexadecimal
鲛
Url
%E9%B2%9B

Code

MD5
4e1560c38062e0d48c185cda3424d335
Sha1
e9e0b3a52bf1038579a308db81e37b1377ed4749
Base64
6bKb

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9C9B';
console.log(char);  // Output: 鲛

Java:

char c = '\u9C9B';
System.out.println(c);  // Output: 鲛

JSON:

{"text": "\u9C9B"}  // Value: 鲛

Python:

char = '\u9C9B'
print(char)  # Output: 鲛

Perl:

my $char = "\x{9C9B}";
print $char;  # Output: 鲛

PHP:

$char = "\x{9C9B}";
echo $char;  // Output: 鲛

Ruby:

char = "\u{9C9B}"
puts char  # Output: 鲛

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40091;</p>  <!-- Display: 鲛 -->

HTML Hexadecimal:

<p>HTML hex: &#x9C9B;</p>  <!-- Display: 鲛 -->

URL Encoding:

// 鲛 URL encoding
https://unicodefinder.com/search.php?query=%E9%B2%9B

Encodings

MD5:

4e1560c38062e0d48c185cda3424d335

SHA1:

e9e0b3a52bf1038579a308db81e37b1377ed4749

Base64:

6bKb