Unicode Finder

"鮫" U+9BAB(CJK UNIFIED IDEOGRAPH-9BAB)

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

Programming

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

Web

CSS
\009BAB
HtmlDecimal
鮫
HtmlHexadecimal
鮫
Url
%E9%AE%AB

Code

MD5
e8dc3f62818c13a0e0a39f651d791007
Sha1
4d32a3dc816a6178170bb8662899c30b51801780
Base64
6a6r

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9BAB';
console.log(char);  // Output: 鮫

Java:

char c = '\u9BAB';
System.out.println(c);  // Output: 鮫

JSON:

{"text": "\u9BAB"}  // Value: 鮫

Python:

char = '\u9BAB'
print(char)  # Output: 鮫

Perl:

my $char = "\x{9BAB}";
print $char;  # Output: 鮫

PHP:

$char = "\x{9BAB}";
echo $char;  // Output: 鮫

Ruby:

char = "\u{9BAB}"
puts char  # Output: 鮫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39851;</p>  <!-- Display: 鮫 -->

HTML Hexadecimal:

<p>HTML hex: &#x9BAB;</p>  <!-- Display: 鮫 -->

URL Encoding:

// 鮫 URL encoding
https://unicodefinder.com/search.php?query=%E9%AE%AB

Encodings

MD5:

e8dc3f62818c13a0e0a39f651d791007

SHA1:

4d32a3dc816a6178170bb8662899c30b51801780

Base64:

6a6r