Unicode Finder

"诋" U+8BCB(CJK UNIFIED IDEOGRAPH-8BCB)

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

Programming

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

Web

CSS
\008BCB
HtmlDecimal
诋
HtmlHexadecimal
诋
Url
%E8%AF%8B

Code

MD5
55bdbe9b2fbbd2079f3a5814829f46b8
Sha1
c0ecc98b72bf4387b47454a2ef52c8ff5b3d3222
Base64
6K+L

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8BCB';
console.log(char);  // Output: 诋

Java:

char c = '\u8BCB';
System.out.println(c);  // Output: 诋

JSON:

{"text": "\u8BCB"}  // Value: 诋

Python:

char = '\u8BCB'
print(char)  # Output: 诋

Perl:

my $char = "\x{8BCB}";
print $char;  # Output: 诋

PHP:

$char = "\x{8BCB}";
echo $char;  // Output: 诋

Ruby:

char = "\u{8BCB}"
puts char  # Output: 诋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35787;</p>  <!-- Display: 诋 -->

HTML Hexadecimal:

<p>HTML hex: &#x8BCB;</p>  <!-- Display: 诋 -->

URL Encoding:

// 诋 URL encoding
https://unicodefinder.com/search.php?query=%E8%AF%8B

Encodings

MD5:

55bdbe9b2fbbd2079f3a5814829f46b8

SHA1:

c0ecc98b72bf4387b47454a2ef52c8ff5b3d3222

Base64:

6K+L