Unicode Finder

"請" U+8ACB(CJK UNIFIED IDEOGRAPH-8ACB)

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

Programming

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

Web

CSS
\008ACB
HtmlDecimal
請
HtmlHexadecimal
請
Url
%E8%AB%8B

Code

MD5
6a61509c730a4d6ee01e81e8bddf03e3
Sha1
815126e2c5168e2762eaca9535393573ecb91707
Base64
6KuL

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8ACB';
console.log(char);  // Output: 請

Java:

char c = '\u8ACB';
System.out.println(c);  // Output: 請

JSON:

{"text": "\u8ACB"}  // Value: 請

Python:

char = '\u8ACB'
print(char)  # Output: 請

Perl:

my $char = "\x{8ACB}";
print $char;  # Output: 請

PHP:

$char = "\x{8ACB}";
echo $char;  // Output: 請

Ruby:

char = "\u{8ACB}"
puts char  # Output: 請

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35531;</p>  <!-- Display: 請 -->

HTML Hexadecimal:

<p>HTML hex: &#x8ACB;</p>  <!-- Display: 請 -->

URL Encoding:

// 請 URL encoding
https://unicodefinder.com/search.php?query=%E8%AB%8B

Encodings

MD5:

6a61509c730a4d6ee01e81e8bddf03e3

SHA1:

815126e2c5168e2762eaca9535393573ecb91707

Base64:

6KuL