Unicode Finder

"櫙" U+6AD9(CJK UNIFIED IDEOGRAPH-6AD9)

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

Programming

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

Web

CSS
\006AD9
HtmlDecimal
櫙
HtmlHexadecimal
櫙
Url
%E6%AB%99

Code

MD5
db68d8a9f183f228023dea99f8f5a68d
Sha1
edcd89d89142c6557d88832fce2d59b390612f66
Base64
5quZ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6AD9';
console.log(char);  // Output: 櫙

Java:

char c = '\u6AD9';
System.out.println(c);  // Output: 櫙

JSON:

{"text": "\u6AD9"}  // Value: 櫙

Python:

char = '\u6AD9'
print(char)  # Output: 櫙

Perl:

my $char = "\x{6AD9}";
print $char;  # Output: 櫙

PHP:

$char = "\x{6AD9}";
echo $char;  // Output: 櫙

Ruby:

char = "\u{6AD9}"
puts char  # Output: 櫙

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27353;</p>  <!-- Display: 櫙 -->

HTML Hexadecimal:

<p>HTML hex: &#x6AD9;</p>  <!-- Display: 櫙 -->

URL Encoding:

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

Encodings

MD5:

db68d8a9f183f228023dea99f8f5a68d

SHA1:

edcd89d89142c6557d88832fce2d59b390612f66

Base64:

5quZ