Unicode Finder

"鯋" U+9BCB(CJK UNIFIED IDEOGRAPH-9BCB)

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

Programming

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

Web

CSS
\009BCB
HtmlDecimal
鯋
HtmlHexadecimal
鯋
Url
%E9%AF%8B

Code

MD5
0ff449068802479fbaf33811eb8e6f00
Sha1
3306ff2d8dbafc37b5da1399d79a3075949797d7
Base64
6a+L

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9BCB';
console.log(char);  // Output: 鯋

Java:

char c = '\u9BCB';
System.out.println(c);  // Output: 鯋

JSON:

{"text": "\u9BCB"}  // Value: 鯋

Python:

char = '\u9BCB'
print(char)  # Output: 鯋

Perl:

my $char = "\x{9BCB}";
print $char;  # Output: 鯋

PHP:

$char = "\x{9BCB}";
echo $char;  // Output: 鯋

Ruby:

char = "\u{9BCB}"
puts char  # Output: 鯋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39883;</p>  <!-- Display: 鯋 -->

HTML Hexadecimal:

<p>HTML hex: &#x9BCB;</p>  <!-- Display: 鯋 -->

URL Encoding:

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

Encodings

MD5:

0ff449068802479fbaf33811eb8e6f00

SHA1:

3306ff2d8dbafc37b5da1399d79a3075949797d7

Base64:

6a+L