Unicode Finder

"鯊" U+9BCA(CJK UNIFIED IDEOGRAPH-9BCA)

U+9BCA
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-9BCA

Programming

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

Web

CSS
\009BCA
HtmlDecimal
鯊
HtmlHexadecimal
鯊
Url
%E9%AF%8A

Code

MD5
57826a7f37670e6dfccca82253f5e2bb
Sha1
490a8588d9722aafadb60b32cba8e4fdb44eca09
Base64
6a+K

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9BCA';
console.log(char);  // Output: 鯊

Java:

char c = '\u9BCA';
System.out.println(c);  // Output: 鯊

JSON:

{"text": "\u9BCA"}  // Value: 鯊

Python:

char = '\u9BCA'
print(char)  # Output: 鯊

Perl:

my $char = "\x{9BCA}";
print $char;  # Output: 鯊

PHP:

$char = "\x{9BCA}";
echo $char;  // Output: 鯊

Ruby:

char = "\u{9BCA}"
puts char  # Output: 鯊

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39882;</p>  <!-- Display: 鯊 -->

HTML Hexadecimal:

<p>HTML hex: &#x9BCA;</p>  <!-- Display: 鯊 -->

URL Encoding:

// 鯊 URL encoding
https://unicodefinder.com/search.php?query=%E9%AF%8A

Encodings

MD5:

57826a7f37670e6dfccca82253f5e2bb

SHA1:

490a8588d9722aafadb60b32cba8e4fdb44eca09

Base64:

6a+K