Unicode Finder

"櫉" U+6AC9(CJK UNIFIED IDEOGRAPH-6AC9)

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

Programming

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

Web

CSS
\006AC9
HtmlDecimal
櫉
HtmlHexadecimal
櫉
Url
%E6%AB%89

Code

MD5
fdb341531e0fb21176bf788964a4db06
Sha1
2ded308d1c319e40a735064c7ed934f8635bd547
Base64
5quJ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6AC9';
console.log(char);  // Output: 櫉

Java:

char c = '\u6AC9';
System.out.println(c);  // Output: 櫉

JSON:

{"text": "\u6AC9"}  // Value: 櫉

Python:

char = '\u6AC9'
print(char)  # Output: 櫉

Perl:

my $char = "\x{6AC9}";
print $char;  # Output: 櫉

PHP:

$char = "\x{6AC9}";
echo $char;  // Output: 櫉

Ruby:

char = "\u{6AC9}"
puts char  # Output: 櫉

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27337;</p>  <!-- Display: 櫉 -->

HTML Hexadecimal:

<p>HTML hex: &#x6AC9;</p>  <!-- Display: 櫉 -->

URL Encoding:

// 櫉 URL encoding
https://unicodefinder.com/search.php?query=%E6%AB%89

Encodings

MD5:

fdb341531e0fb21176bf788964a4db06

SHA1:

2ded308d1c319e40a735064c7ed934f8635bd547

Base64:

5quJ