Unicode Finder

"讷" U+8BB7(CJK UNIFIED IDEOGRAPH-8BB7)

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

Programming

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

Web

CSS
\008BB7
HtmlDecimal
讷
HtmlHexadecimal
讷
Url
%E8%AE%B7

Code

MD5
8aec90362a09f4ae88ed21d8507494c6
Sha1
33881f695cb1d7d4b95f51cd5ced5c24c5f05706
Base64
6K63

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8BB7';
console.log(char);  // Output: 讷

Java:

char c = '\u8BB7';
System.out.println(c);  // Output: 讷

JSON:

{"text": "\u8BB7"}  // Value: 讷

Python:

char = '\u8BB7'
print(char)  # Output: 讷

Perl:

my $char = "\x{8BB7}";
print $char;  # Output: 讷

PHP:

$char = "\x{8BB7}";
echo $char;  // Output: 讷

Ruby:

char = "\u{8BB7}"
puts char  # Output: 讷

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35767;</p>  <!-- Display: 讷 -->

HTML Hexadecimal:

<p>HTML hex: &#x8BB7;</p>  <!-- Display: 讷 -->

URL Encoding:

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

Encodings

MD5:

8aec90362a09f4ae88ed21d8507494c6

SHA1:

33881f695cb1d7d4b95f51cd5ced5c24c5f05706

Base64:

6K63