Unicode Finder

"檸" U+6AB8(CJK UNIFIED IDEOGRAPH-6AB8)

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

Programming

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

Web

CSS
\006AB8
HtmlDecimal
檸
HtmlHexadecimal
檸
Url
%E6%AA%B8

Code

MD5
1808db1216fe15a53493b6488cf79da0
Sha1
43d9e339eeaf0355fe16c41a9fe929f20037c8df
Base64
5qq4

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6AB8';
console.log(char);  // Output: 檸

Java:

char c = '\u6AB8';
System.out.println(c);  // Output: 檸

JSON:

{"text": "\u6AB8"}  // Value: 檸

Python:

char = '\u6AB8'
print(char)  # Output: 檸

Perl:

my $char = "\x{6AB8}";
print $char;  # Output: 檸

PHP:

$char = "\x{6AB8}";
echo $char;  // Output: 檸

Ruby:

char = "\u{6AB8}"
puts char  # Output: 檸

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27320;</p>  <!-- Display: 檸 -->

HTML Hexadecimal:

<p>HTML hex: &#x6AB8;</p>  <!-- Display: 檸 -->

URL Encoding:

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

Encodings

MD5:

1808db1216fe15a53493b6488cf79da0

SHA1:

43d9e339eeaf0355fe16c41a9fe929f20037c8df

Base64:

5qq4