Unicode Finder

"櫔" U+6AD4(CJK UNIFIED IDEOGRAPH-6AD4)

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

Programming

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

Web

CSS
\006AD4
HtmlDecimal
櫔
HtmlHexadecimal
櫔
Url
%E6%AB%94

Code

MD5
b6bd0d2d55ff08749e6da60328d08256
Sha1
c2a3f4b641d74a669883c1c3cbeaeded38c027d0
Base64
5quU

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6AD4';
console.log(char);  // Output: 櫔

Java:

char c = '\u6AD4';
System.out.println(c);  // Output: 櫔

JSON:

{"text": "\u6AD4"}  // Value: 櫔

Python:

char = '\u6AD4'
print(char)  # Output: 櫔

Perl:

my $char = "\x{6AD4}";
print $char;  # Output: 櫔

PHP:

$char = "\x{6AD4}";
echo $char;  // Output: 櫔

Ruby:

char = "\u{6AD4}"
puts char  # Output: 櫔

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27348;</p>  <!-- Display: 櫔 -->

HTML Hexadecimal:

<p>HTML hex: &#x6AD4;</p>  <!-- Display: 櫔 -->

URL Encoding:

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

Encodings

MD5:

b6bd0d2d55ff08749e6da60328d08256

SHA1:

c2a3f4b641d74a669883c1c3cbeaeded38c027d0

Base64:

5quU