Unicode Finder

"汬" U+6C6C(CJK UNIFIED IDEOGRAPH-6C6C)

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

Programming

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

Web

CSS
\006C6C
HtmlDecimal
汬
HtmlHexadecimal
汬
Url
%E6%B1%AC

Code

MD5
9aae7907f10ad869cd5830139ce17662
Sha1
2cdac553c38f865f706fca47aed2c8fb42124d3b
Base64
5rGs

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6C6C';
console.log(char);  // Output: 汬

Java:

char c = '\u6C6C';
System.out.println(c);  // Output: 汬

JSON:

{"text": "\u6C6C"}  // Value: 汬

Python:

char = '\u6C6C'
print(char)  # Output: 汬

Perl:

my $char = "\x{6C6C}";
print $char;  # Output: 汬

PHP:

$char = "\x{6C6C}";
echo $char;  // Output: 汬

Ruby:

char = "\u{6C6C}"
puts char  # Output: 汬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27756;</p>  <!-- Display: 汬 -->

HTML Hexadecimal:

<p>HTML hex: &#x6C6C;</p>  <!-- Display: 汬 -->

URL Encoding:

// 汬 URL encoding
https://unicodefinder.com/search.php?query=%E6%B1%AC

Encodings

MD5:

9aae7907f10ad869cd5830139ce17662

SHA1:

2cdac553c38f865f706fca47aed2c8fb42124d3b

Base64:

5rGs