Unicode Finder

"讲" U+8BB2(CJK UNIFIED IDEOGRAPH-8BB2)

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

Programming

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

Web

CSS
\008BB2
HtmlDecimal
讲
HtmlHexadecimal
讲
Url
%E8%AE%B2

Code

MD5
9b0a03d1e8937dc085134298fe8794a2
Sha1
860fe2bcd431febcdf3f0721dab8f315739c4a91
Base64
6K6y

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8BB2';
console.log(char);  // Output: 讲

Java:

char c = '\u8BB2';
System.out.println(c);  // Output: 讲

JSON:

{"text": "\u8BB2"}  // Value: 讲

Python:

char = '\u8BB2'
print(char)  # Output: 讲

Perl:

my $char = "\x{8BB2}";
print $char;  # Output: 讲

PHP:

$char = "\x{8BB2}";
echo $char;  // Output: 讲

Ruby:

char = "\u{8BB2}"
puts char  # Output: 讲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35762;</p>  <!-- Display: 讲 -->

HTML Hexadecimal:

<p>HTML hex: &#x8BB2;</p>  <!-- Display: 讲 -->

URL Encoding:

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

Encodings

MD5:

9b0a03d1e8937dc085134298fe8794a2

SHA1:

860fe2bcd431febcdf3f0721dab8f315739c4a91

Base64:

6K6y