Unicode Finder

"鮬" U+9BAC(CJK UNIFIED IDEOGRAPH-9BAC)

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

Programming

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

Web

CSS
\009BAC
HtmlDecimal
鮬
HtmlHexadecimal
鮬
Url
%E9%AE%AC

Code

MD5
99cae2be460decfc0671b638aa672d00
Sha1
323e336f27e52fb253bb7cc9bc8802bb265176c8
Base64
6a6s

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9BAC';
console.log(char);  // Output: 鮬

Java:

char c = '\u9BAC';
System.out.println(c);  // Output: 鮬

JSON:

{"text": "\u9BAC"}  // Value: 鮬

Python:

char = '\u9BAC'
print(char)  # Output: 鮬

Perl:

my $char = "\x{9BAC}";
print $char;  # Output: 鮬

PHP:

$char = "\x{9BAC}";
echo $char;  // Output: 鮬

Ruby:

char = "\u{9BAC}"
puts char  # Output: 鮬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39852;</p>  <!-- Display: 鮬 -->

HTML Hexadecimal:

<p>HTML hex: &#x9BAC;</p>  <!-- Display: 鮬 -->

URL Encoding:

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

Encodings

MD5:

99cae2be460decfc0671b638aa672d00

SHA1:

323e336f27e52fb253bb7cc9bc8802bb265176c8

Base64:

6a6s