Unicode Finder

"鮺" U+9BBA(CJK UNIFIED IDEOGRAPH-9BBA)

U+9BBA
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-9BBA

Programming

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

Web

CSS
\009BBA
HtmlDecimal
鮺
HtmlHexadecimal
鮺
Url
%E9%AE%BA

Code

MD5
924b88f51334c29448d615cb2fca54d8
Sha1
a8693b18fb024305bdf4a5038a108270acb9df65
Base64
6a66

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9BBA';
console.log(char);  // Output: 鮺

Java:

char c = '\u9BBA';
System.out.println(c);  // Output: 鮺

JSON:

{"text": "\u9BBA"}  // Value: 鮺

Python:

char = '\u9BBA'
print(char)  # Output: 鮺

Perl:

my $char = "\x{9BBA}";
print $char;  # Output: 鮺

PHP:

$char = "\x{9BBA}";
echo $char;  // Output: 鮺

Ruby:

char = "\u{9BBA}"
puts char  # Output: 鮺

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39866;</p>  <!-- Display: 鮺 -->

HTML Hexadecimal:

<p>HTML hex: &#x9BBA;</p>  <!-- Display: 鮺 -->

URL Encoding:

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

Encodings

MD5:

924b88f51334c29448d615cb2fca54d8

SHA1:

a8693b18fb024305bdf4a5038a108270acb9df65

Base64:

6a66