Unicode Finder

"櫖" U+6AD6(CJK UNIFIED IDEOGRAPH-6AD6)

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

Programming

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

Web

CSS
\006AD6
HtmlDecimal
櫖
HtmlHexadecimal
櫖
Url
%E6%AB%96

Code

MD5
d6913a3c21cb779671745b9c29594bfa
Sha1
cfbce5dbdf087971b0461cf092cf1cde425029d8
Base64
5quW

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6AD6';
console.log(char);  // Output: 櫖

Java:

char c = '\u6AD6';
System.out.println(c);  // Output: 櫖

JSON:

{"text": "\u6AD6"}  // Value: 櫖

Python:

char = '\u6AD6'
print(char)  # Output: 櫖

Perl:

my $char = "\x{6AD6}";
print $char;  # Output: 櫖

PHP:

$char = "\x{6AD6}";
echo $char;  // Output: 櫖

Ruby:

char = "\u{6AD6}"
puts char  # Output: 櫖

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27350;</p>  <!-- Display: 櫖 -->

HTML Hexadecimal:

<p>HTML hex: &#x6AD6;</p>  <!-- Display: 櫖 -->

URL Encoding:

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

Encodings

MD5:

d6913a3c21cb779671745b9c29594bfa

SHA1:

cfbce5dbdf087971b0461cf092cf1cde425029d8

Base64:

5quW