Unicode Finder

"櫑" U+6AD1(CJK UNIFIED IDEOGRAPH-6AD1)

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

Programming

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

Web

CSS
\006AD1
HtmlDecimal
櫑
HtmlHexadecimal
櫑
Url
%E6%AB%91

Code

MD5
c0a885323861f37e22cf8ea8c157bfcc
Sha1
0ec9aa144fc8e6b6040d74c541a08670f847db35
Base64
5quR

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6AD1';
console.log(char);  // Output: 櫑

Java:

char c = '\u6AD1';
System.out.println(c);  // Output: 櫑

JSON:

{"text": "\u6AD1"}  // Value: 櫑

Python:

char = '\u6AD1'
print(char)  # Output: 櫑

Perl:

my $char = "\x{6AD1}";
print $char;  # Output: 櫑

PHP:

$char = "\x{6AD1}";
echo $char;  // Output: 櫑

Ruby:

char = "\u{6AD1}"
puts char  # Output: 櫑

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27345;</p>  <!-- Display: 櫑 -->

HTML Hexadecimal:

<p>HTML hex: &#x6AD1;</p>  <!-- Display: 櫑 -->

URL Encoding:

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

Encodings

MD5:

c0a885323861f37e22cf8ea8c157bfcc

SHA1:

0ec9aa144fc8e6b6040d74c541a08670f847db35

Base64:

5quR