Unicode Finder

"櫇" U+6AC7(CJK UNIFIED IDEOGRAPH-6AC7)

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

Programming

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

Web

CSS
\006AC7
HtmlDecimal
櫇
HtmlHexadecimal
櫇
Url
%E6%AB%87

Code

MD5
b8991e8ae0fea204c3baf1388ed61aea
Sha1
434a39521986b4de6e9e2ce8cce5fc527edcf5a1
Base64
5quH

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6AC7';
console.log(char);  // Output: 櫇

Java:

char c = '\u6AC7';
System.out.println(c);  // Output: 櫇

JSON:

{"text": "\u6AC7"}  // Value: 櫇

Python:

char = '\u6AC7'
print(char)  # Output: 櫇

Perl:

my $char = "\x{6AC7}";
print $char;  # Output: 櫇

PHP:

$char = "\x{6AC7}";
echo $char;  // Output: 櫇

Ruby:

char = "\u{6AC7}"
puts char  # Output: 櫇

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27335;</p>  <!-- Display: 櫇 -->

HTML Hexadecimal:

<p>HTML hex: &#x6AC7;</p>  <!-- Display: 櫇 -->

URL Encoding:

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

Encodings

MD5:

b8991e8ae0fea204c3baf1388ed61aea

SHA1:

434a39521986b4de6e9e2ce8cce5fc527edcf5a1

Base64:

5quH