Unicode Finder

"櫭" U+6AED(CJK UNIFIED IDEOGRAPH-6AED)

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

Programming

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

Web

CSS
\006AED
HtmlDecimal
櫭
HtmlHexadecimal
櫭
Url
%E6%AB%AD

Code

MD5
ae4e3eae5322df09abe4b4c0eb717fc8
Sha1
b40aa8d6de2c42f094b3878d5bcb9827eaa0ee65
Base64
5qut

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6AED';
console.log(char);  // Output: 櫭

Java:

char c = '\u6AED';
System.out.println(c);  // Output: 櫭

JSON:

{"text": "\u6AED"}  // Value: 櫭

Python:

char = '\u6AED'
print(char)  # Output: 櫭

Perl:

my $char = "\x{6AED}";
print $char;  # Output: 櫭

PHP:

$char = "\x{6AED}";
echo $char;  // Output: 櫭

Ruby:

char = "\u{6AED}"
puts char  # Output: 櫭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27373;</p>  <!-- Display: 櫭 -->

HTML Hexadecimal:

<p>HTML hex: &#x6AED;</p>  <!-- Display: 櫭 -->

URL Encoding:

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

Encodings

MD5:

ae4e3eae5322df09abe4b4c0eb717fc8

SHA1:

b40aa8d6de2c42f094b3878d5bcb9827eaa0ee65

Base64:

5qut