Unicode Finder

"考" U+8003(CJK UNIFIED IDEOGRAPH-8003)

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

Programming

C
\u8003
JavaScript
\u8003
Java
\u8003
Json
\u8003
Python
\u8003
Perl
\x{8003}
PHP
\x{8003}
Ruby
\u{8003}
Rust
\u{8003}
Go
\u8003

Web

CSS
\008003
HtmlDecimal
考
HtmlHexadecimal
考
Url
%E8%80%83

Code

MD5
e7b196a12124c8feec5e08ae40345d29
Sha1
ed96d74c8ab8fef86fe557ed22d09da57f60c1b2
Base64
6ICD

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8003';
console.log(char);  // Output: 考

Java:

char c = '\u8003';
System.out.println(c);  // Output: 考

JSON:

{"text": "\u8003"}  // Value: 考

Python:

char = '\u8003'
print(char)  # Output: 考

Perl:

my $char = "\x{8003}";
print $char;  # Output: 考

PHP:

$char = "\x{8003}";
echo $char;  // Output: 考

Ruby:

char = "\u{8003}"
puts char  # Output: 考

Rust:

let c = '\u{8003}';
println!("{}", c);  // Output: 考

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008003";  /* Display: 考 */
}

HTML Decimal:

<p>HTML decimal: &#32771;</p>  <!-- Display: 考 -->

HTML Hexadecimal:

<p>HTML hex: &#x8003;</p>  <!-- Display: 考 -->

URL Encoding:

// 考 URL encoding
https://unicodefinder.com/search.php?query=%E8%80%83

Encodings

MD5:

e7b196a12124c8feec5e08ae40345d29

SHA1:

ed96d74c8ab8fef86fe557ed22d09da57f60c1b2

Base64:

6ICD