Unicode Finder

"诼" U+8BFC(CJK UNIFIED IDEOGRAPH-8BFC)

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

Programming

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

Web

CSS
\008BFC
HtmlDecimal
诼
HtmlHexadecimal
诼
Url
%E8%AF%BC

Code

MD5
af9902a08706d1bfe4db8b5c465bbace
Sha1
273ed3f209f4cb36f525bf16c3420ac407e506c4
Base64
6K+8

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8BFC';
console.log(char);  // Output: 诼

Java:

char c = '\u8BFC';
System.out.println(c);  // Output: 诼

JSON:

{"text": "\u8BFC"}  // Value: 诼

Python:

char = '\u8BFC'
print(char)  # Output: 诼

Perl:

my $char = "\x{8BFC}";
print $char;  # Output: 诼

PHP:

$char = "\x{8BFC}";
echo $char;  // Output: 诼

Ruby:

char = "\u{8BFC}"
puts char  # Output: 诼

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35836;</p>  <!-- Display: 诼 -->

HTML Hexadecimal:

<p>HTML hex: &#x8BFC;</p>  <!-- Display: 诼 -->

URL Encoding:

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

Encodings

MD5:

af9902a08706d1bfe4db8b5c465bbace

SHA1:

273ed3f209f4cb36f525bf16c3420ac407e506c4

Base64:

6K+8