Unicode Finder

"檹" U+6AB9(CJK UNIFIED IDEOGRAPH-6AB9)

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

Programming

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

Web

CSS
\006AB9
HtmlDecimal
檹
HtmlHexadecimal
檹
Url
%E6%AA%B9

Code

MD5
4a9daa689ba66f290451bf85340f837c
Sha1
a7295f189c05c0fe0a3e6e97cc6ae6142ad073be
Base64
5qq5

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6AB9';
console.log(char);  // Output: 檹

Java:

char c = '\u6AB9';
System.out.println(c);  // Output: 檹

JSON:

{"text": "\u6AB9"}  // Value: 檹

Python:

char = '\u6AB9'
print(char)  # Output: 檹

Perl:

my $char = "\x{6AB9}";
print $char;  # Output: 檹

PHP:

$char = "\x{6AB9}";
echo $char;  // Output: 檹

Ruby:

char = "\u{6AB9}"
puts char  # Output: 檹

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27321;</p>  <!-- Display: 檹 -->

HTML Hexadecimal:

<p>HTML hex: &#x6AB9;</p>  <!-- Display: 檹 -->

URL Encoding:

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

Encodings

MD5:

4a9daa689ba66f290451bf85340f837c

SHA1:

a7295f189c05c0fe0a3e6e97cc6ae6142ad073be

Base64:

5qq5