Unicode Finder

"诮" U+8BEE(CJK UNIFIED IDEOGRAPH-8BEE)

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

Programming

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

Web

CSS
\008BEE
HtmlDecimal
诮
HtmlHexadecimal
诮
Url
%E8%AF%AE

Code

MD5
602e76c9dee54a8ea1a8113c9619c3f3
Sha1
f0c8419776c7b4fb73a4f07df4e7cc45872c28e2
Base64
6K+u

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8BEE';
console.log(char);  // Output: 诮

Java:

char c = '\u8BEE';
System.out.println(c);  // Output: 诮

JSON:

{"text": "\u8BEE"}  // Value: 诮

Python:

char = '\u8BEE'
print(char)  # Output: 诮

Perl:

my $char = "\x{8BEE}";
print $char;  # Output: 诮

PHP:

$char = "\x{8BEE}";
echo $char;  // Output: 诮

Ruby:

char = "\u{8BEE}"
puts char  # Output: 诮

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35822;</p>  <!-- Display: 诮 -->

HTML Hexadecimal:

<p>HTML hex: &#x8BEE;</p>  <!-- Display: 诮 -->

URL Encoding:

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

Encodings

MD5:

602e76c9dee54a8ea1a8113c9619c3f3

SHA1:

f0c8419776c7b4fb73a4f07df4e7cc45872c28e2

Base64:

6K+u