Unicode Finder

"讼" U+8BBC(CJK UNIFIED IDEOGRAPH-8BBC)

U+8BBC
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-8BBC

Programming

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

Web

CSS
\008BBC
HtmlDecimal
讼
HtmlHexadecimal
讼
Url
%E8%AE%BC

Code

MD5
7f84405267e07d3de603f3cb8f87120f
Sha1
146a68aee89f3e88e34535d539be86264024e9dc
Base64
6K68

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8BBC';
console.log(char);  // Output: 讼

Java:

char c = '\u8BBC';
System.out.println(c);  // Output: 讼

JSON:

{"text": "\u8BBC"}  // Value: 讼

Python:

char = '\u8BBC'
print(char)  # Output: 讼

Perl:

my $char = "\x{8BBC}";
print $char;  # Output: 讼

PHP:

$char = "\x{8BBC}";
echo $char;  // Output: 讼

Ruby:

char = "\u{8BBC}"
puts char  # Output: 讼

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35772;</p>  <!-- Display: 讼 -->

HTML Hexadecimal:

<p>HTML hex: &#x8BBC;</p>  <!-- Display: 讼 -->

URL Encoding:

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

Encodings

MD5:

7f84405267e07d3de603f3cb8f87120f

SHA1:

146a68aee89f3e88e34535d539be86264024e9dc

Base64:

6K68