Unicode Finder

"鲫" U+9CAB(CJK UNIFIED IDEOGRAPH-9CAB)

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

Programming

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

Web

CSS
\009CAB
HtmlDecimal
鲫
HtmlHexadecimal
鲫
Url
%E9%B2%AB

Code

MD5
b0b29987bba9b8bbab14905662cb4735
Sha1
74167cf6f6c4b3d49916b9797a44d97ccdd07b0d
Base64
6bKr

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9CAB';
console.log(char);  // Output: 鲫

Java:

char c = '\u9CAB';
System.out.println(c);  // Output: 鲫

JSON:

{"text": "\u9CAB"}  // Value: 鲫

Python:

char = '\u9CAB'
print(char)  # Output: 鲫

Perl:

my $char = "\x{9CAB}";
print $char;  # Output: 鲫

PHP:

$char = "\x{9CAB}";
echo $char;  // Output: 鲫

Ruby:

char = "\u{9CAB}"
puts char  # Output: 鲫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40107;</p>  <!-- Display: 鲫 -->

HTML Hexadecimal:

<p>HTML hex: &#x9CAB;</p>  <!-- Display: 鲫 -->

URL Encoding:

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

Encodings

MD5:

b0b29987bba9b8bbab14905662cb4735

SHA1:

74167cf6f6c4b3d49916b9797a44d97ccdd07b0d

Base64:

6bKr