Unicode Finder

"鮳" U+9BB3(CJK UNIFIED IDEOGRAPH-9BB3)

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

Programming

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

Web

CSS
\009BB3
HtmlDecimal
鮳
HtmlHexadecimal
鮳
Url
%E9%AE%B3

Code

MD5
cb0e38092fe99dad9dc51773a7bef3bf
Sha1
259a1ee40d4fa1f9eb8bfaca0f215d315577f382
Base64
6a6z

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9BB3';
console.log(char);  // Output: 鮳

Java:

char c = '\u9BB3';
System.out.println(c);  // Output: 鮳

JSON:

{"text": "\u9BB3"}  // Value: 鮳

Python:

char = '\u9BB3'
print(char)  # Output: 鮳

Perl:

my $char = "\x{9BB3}";
print $char;  # Output: 鮳

PHP:

$char = "\x{9BB3}";
echo $char;  // Output: 鮳

Ruby:

char = "\u{9BB3}"
puts char  # Output: 鮳

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39859;</p>  <!-- Display: 鮳 -->

HTML Hexadecimal:

<p>HTML hex: &#x9BB3;</p>  <!-- Display: 鮳 -->

URL Encoding:

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

Encodings

MD5:

cb0e38092fe99dad9dc51773a7bef3bf

SHA1:

259a1ee40d4fa1f9eb8bfaca0f215d315577f382

Base64:

6a6z