Unicode Finder

"櫘" U+6AD8(CJK UNIFIED IDEOGRAPH-6AD8)

U+6AD8
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-6AD8

Programming

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

Web

CSS
\006AD8
HtmlDecimal
櫘
HtmlHexadecimal
櫘
Url
%E6%AB%98

Code

MD5
12e1b090aa6caff645d4f0128794001d
Sha1
3d5dcc3f430bc895bfae359a1d0d031f82be3a8b
Base64
5quY

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6AD8';
console.log(char);  // Output: 櫘

Java:

char c = '\u6AD8';
System.out.println(c);  // Output: 櫘

JSON:

{"text": "\u6AD8"}  // Value: 櫘

Python:

char = '\u6AD8'
print(char)  # Output: 櫘

Perl:

my $char = "\x{6AD8}";
print $char;  # Output: 櫘

PHP:

$char = "\x{6AD8}";
echo $char;  // Output: 櫘

Ruby:

char = "\u{6AD8}"
puts char  # Output: 櫘

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27352;</p>  <!-- Display: 櫘 -->

HTML Hexadecimal:

<p>HTML hex: &#x6AD8;</p>  <!-- Display: 櫘 -->

URL Encoding:

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

Encodings

MD5:

12e1b090aa6caff645d4f0128794001d

SHA1:

3d5dcc3f430bc895bfae359a1d0d031f82be3a8b

Base64:

5quY