Unicode Finder

"樜" U+6A1C(CJK UNIFIED IDEOGRAPH-6A1C)

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

Programming

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

Web

CSS
\006A1C
HtmlDecimal
樜
HtmlHexadecimal
樜
Url
%E6%A8%9C

Code

MD5
6043920f21e8657a2920f706c2b802c2
Sha1
83ad58293b494a4695d97988cce08af5cf43b29e
Base64
5qic

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6A1C';
console.log(char);  // Output: 樜

Java:

char c = '\u6A1C';
System.out.println(c);  // Output: 樜

JSON:

{"text": "\u6A1C"}  // Value: 樜

Python:

char = '\u6A1C'
print(char)  # Output: 樜

Perl:

my $char = "\x{6A1C}";
print $char;  # Output: 樜

PHP:

$char = "\x{6A1C}";
echo $char;  // Output: 樜

Ruby:

char = "\u{6A1C}"
puts char  # Output: 樜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27164;</p>  <!-- Display: 樜 -->

HTML Hexadecimal:

<p>HTML hex: &#x6A1C;</p>  <!-- Display: 樜 -->

URL Encoding:

// 樜 URL encoding
https://unicodefinder.com/search.php?query=%E6%A8%9C

Encodings

MD5:

6043920f21e8657a2920f706c2b802c2

SHA1:

83ad58293b494a4695d97988cce08af5cf43b29e

Base64:

5qic