Unicode Finder

"櫣" U+6AE3(CJK UNIFIED IDEOGRAPH-6AE3)

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

Programming

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

Web

CSS
\006AE3
HtmlDecimal
櫣
HtmlHexadecimal
櫣
Url
%E6%AB%A3

Code

MD5
a9ab871aefa38095c35f445892bf5dc4
Sha1
9ebd68cf2af2ce9dd00850b288ec1dc0d5baa1e3
Base64
5quj

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6AE3';
console.log(char);  // Output: 櫣

Java:

char c = '\u6AE3';
System.out.println(c);  // Output: 櫣

JSON:

{"text": "\u6AE3"}  // Value: 櫣

Python:

char = '\u6AE3'
print(char)  # Output: 櫣

Perl:

my $char = "\x{6AE3}";
print $char;  # Output: 櫣

PHP:

$char = "\x{6AE3}";
echo $char;  // Output: 櫣

Ruby:

char = "\u{6AE3}"
puts char  # Output: 櫣

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27363;</p>  <!-- Display: 櫣 -->

HTML Hexadecimal:

<p>HTML hex: &#x6AE3;</p>  <!-- Display: 櫣 -->

URL Encoding:

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

Encodings

MD5:

a9ab871aefa38095c35f445892bf5dc4

SHA1:

9ebd68cf2af2ce9dd00850b288ec1dc0d5baa1e3

Base64:

5quj