Unicode Finder

"課" U+8AB2(CJK UNIFIED IDEOGRAPH-8AB2)

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

Programming

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

Web

CSS
\008AB2
HtmlDecimal
課
HtmlHexadecimal
課
Url
%E8%AA%B2

Code

MD5
ca007b19fce86a3bf3e629350545f31a
Sha1
ba6e4ede02e73d88acceb91be1c634638d1e6dd3
Base64
6Kqy

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8AB2';
console.log(char);  // Output: 課

Java:

char c = '\u8AB2';
System.out.println(c);  // Output: 課

JSON:

{"text": "\u8AB2"}  // Value: 課

Python:

char = '\u8AB2'
print(char)  # Output: 課

Perl:

my $char = "\x{8AB2}";
print $char;  # Output: 課

PHP:

$char = "\x{8AB2}";
echo $char;  // Output: 課

Ruby:

char = "\u{8AB2}"
puts char  # Output: 課

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35506;</p>  <!-- Display: 課 -->

HTML Hexadecimal:

<p>HTML hex: &#x8AB2;</p>  <!-- Display: 課 -->

URL Encoding:

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

Encodings

MD5:

ca007b19fce86a3bf3e629350545f31a

SHA1:

ba6e4ede02e73d88acceb91be1c634638d1e6dd3

Base64:

6Kqy