Unicode Finder

"檳" U+6AB3(CJK UNIFIED IDEOGRAPH-6AB3)

U+6AB3
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-6AB3

Programming

C
\u6AB3
JavaScript
\u6AB3
Java
\u6AB3
Json
\u6AB3
Python
\u6AB3
Perl
\x{6AB3}
PHP
\x{6AB3}
Ruby
\u{6AB3}
Rust
\u{6AB3}
Go
\u6AB3

Web

CSS
\006AB3
HtmlDecimal
檳
HtmlHexadecimal
檳
Url
%E6%AA%B3

Code

MD5
75f55958748c7fe1a29b8cbe6f4735ec
Sha1
50e58fa8deda437bd9b6e791ed2575dd25ce7a95
Base64
5qqz

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6AB3';
console.log(char);  // Output: 檳

Java:

char c = '\u6AB3';
System.out.println(c);  // Output: 檳

JSON:

{"text": "\u6AB3"}  // Value: 檳

Python:

char = '\u6AB3'
print(char)  # Output: 檳

Perl:

my $char = "\x{6AB3}";
print $char;  # Output: 檳

PHP:

$char = "\x{6AB3}";
echo $char;  // Output: 檳

Ruby:

char = "\u{6AB3}"
puts char  # Output: 檳

Rust:

let c = '\u{6AB3}';
println!("{}", c);  // Output: 檳

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006AB3";  /* Display: 檳 */
}

HTML Decimal:

<p>HTML decimal: &#27315;</p>  <!-- Display: 檳 -->

HTML Hexadecimal:

<p>HTML hex: &#x6AB3;</p>  <!-- Display: 檳 -->

URL Encoding:

// 檳 URL encoding
https://unicodefinder.com/search.php?query=%E6%AA%B3

Encodings

MD5:

75f55958748c7fe1a29b8cbe6f4735ec

SHA1:

50e58fa8deda437bd9b6e791ed2575dd25ce7a95

Base64:

5qqz