Unicode Finder

"讫" U+8BAB(CJK UNIFIED IDEOGRAPH-8BAB)

U+8BAB
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-8BAB

Programming

C
\u8BAB
JavaScript
\u8BAB
Java
\u8BAB
Json
\u8BAB
Python
\u8BAB
Perl
\x{8BAB}
PHP
\x{8BAB}
Ruby
\u{8BAB}
Rust
\u{8BAB}
Go
\u8BAB

Web

CSS
\008BAB
HtmlDecimal
讫
HtmlHexadecimal
讫
Url
%E8%AE%AB

Code

MD5
fd28e8c7b9511c294c7c87894d9212bd
Sha1
06668ca1027e3e148eaab1c034e9443cf30ef330
Base64
6K6r

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8BAB';
console.log(char);  // Output: 讫

Java:

char c = '\u8BAB';
System.out.println(c);  // Output: 讫

JSON:

{"text": "\u8BAB"}  // Value: 讫

Python:

char = '\u8BAB'
print(char)  # Output: 讫

Perl:

my $char = "\x{8BAB}";
print $char;  # Output: 讫

PHP:

$char = "\x{8BAB}";
echo $char;  // Output: 讫

Ruby:

char = "\u{8BAB}"
puts char  # Output: 讫

Rust:

let c = '\u{8BAB}';
println!("{}", c);  // Output: 讫

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008BAB";  /* Display: 讫 */
}

HTML Decimal:

<p>HTML decimal: &#35755;</p>  <!-- Display: 讫 -->

HTML Hexadecimal:

<p>HTML hex: &#x8BAB;</p>  <!-- Display: 讫 -->

URL Encoding:

// 讫 URL encoding
https://unicodefinder.com/search.php?query=%E8%AE%AB

Encodings

MD5:

fd28e8c7b9511c294c7c87894d9212bd

SHA1:

06668ca1027e3e148eaab1c034e9443cf30ef330

Base64:

6K6r