Unicode Finder

"汌" U+6C4C(CJK UNIFIED IDEOGRAPH-6C4C)

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

Programming

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

Web

CSS
\006C4C
HtmlDecimal
汌
HtmlHexadecimal
汌
Url
%E6%B1%8C

Code

MD5
e2b859be8ad537b3550420f420f994c9
Sha1
5e636481dbff338ef3f0cf14590e21910d2c5dc3
Base64
5rGM

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6C4C';
console.log(char);  // Output: 汌

Java:

char c = '\u6C4C';
System.out.println(c);  // Output: 汌

JSON:

{"text": "\u6C4C"}  // Value: 汌

Python:

char = '\u6C4C'
print(char)  # Output: 汌

Perl:

my $char = "\x{6C4C}";
print $char;  # Output: 汌

PHP:

$char = "\x{6C4C}";
echo $char;  // Output: 汌

Ruby:

char = "\u{6C4C}"
puts char  # Output: 汌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27724;</p>  <!-- Display: 汌 -->

HTML Hexadecimal:

<p>HTML hex: &#x6C4C;</p>  <!-- Display: 汌 -->

URL Encoding:

// 汌 URL encoding
https://unicodefinder.com/search.php?query=%E6%B1%8C

Encodings

MD5:

e2b859be8ad537b3550420f420f994c9

SHA1:

5e636481dbff338ef3f0cf14590e21910d2c5dc3

Base64:

5rGM