Unicode Finder

"诫" U+8BEB(CJK UNIFIED IDEOGRAPH-8BEB)

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

Programming

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

Web

CSS
\008BEB
HtmlDecimal
诫
HtmlHexadecimal
诫
Url
%E8%AF%AB

Code

MD5
3814e9935957568b88b7dfb05a498f52
Sha1
5078bdfc61d8ffcffed0df6aae6104c8e3f5a4ff
Base64
6K+r

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8BEB';
console.log(char);  // Output: 诫

Java:

char c = '\u8BEB';
System.out.println(c);  // Output: 诫

JSON:

{"text": "\u8BEB"}  // Value: 诫

Python:

char = '\u8BEB'
print(char)  # Output: 诫

Perl:

my $char = "\x{8BEB}";
print $char;  # Output: 诫

PHP:

$char = "\x{8BEB}";
echo $char;  // Output: 诫

Ruby:

char = "\u{8BEB}"
puts char  # Output: 诫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35819;</p>  <!-- Display: 诫 -->

HTML Hexadecimal:

<p>HTML hex: &#x8BEB;</p>  <!-- Display: 诫 -->

URL Encoding:

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

Encodings

MD5:

3814e9935957568b88b7dfb05a498f52

SHA1:

5078bdfc61d8ffcffed0df6aae6104c8e3f5a4ff

Base64:

6K+r