Unicode Finder

"讻" U+8BBB(CJK UNIFIED IDEOGRAPH-8BBB)

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

Programming

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

Web

CSS
\008BBB
HtmlDecimal
讻
HtmlHexadecimal
讻
Url
%E8%AE%BB

Code

MD5
d056ad05cd72eea144b840f9a15810c8
Sha1
0b45b8cb77d094c95348e0636df8f26df350e3c8
Base64
6K67

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8BBB';
console.log(char);  // Output: 讻

Java:

char c = '\u8BBB';
System.out.println(c);  // Output: 讻

JSON:

{"text": "\u8BBB"}  // Value: 讻

Python:

char = '\u8BBB'
print(char)  # Output: 讻

Perl:

my $char = "\x{8BBB}";
print $char;  # Output: 讻

PHP:

$char = "\x{8BBB}";
echo $char;  // Output: 讻

Ruby:

char = "\u{8BBB}"
puts char  # Output: 讻

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35771;</p>  <!-- Display: 讻 -->

HTML Hexadecimal:

<p>HTML hex: &#x8BBB;</p>  <!-- Display: 讻 -->

URL Encoding:

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

Encodings

MD5:

d056ad05cd72eea144b840f9a15810c8

SHA1:

0b45b8cb77d094c95348e0636df8f26df350e3c8

Base64:

6K67