Unicode Finder

"汋" U+6C4B(CJK UNIFIED IDEOGRAPH-6C4B)

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

Programming

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

Web

CSS
\006C4B
HtmlDecimal
汋
HtmlHexadecimal
汋
Url
%E6%B1%8B

Code

MD5
3ee30b8ed7e43df874c1fd9fc06d0944
Sha1
41f3273a1929bfe2b1507ea0b86e1b141e8b6d90
Base64
5rGL

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6C4B';
console.log(char);  // Output: 汋

Java:

char c = '\u6C4B';
System.out.println(c);  // Output: 汋

JSON:

{"text": "\u6C4B"}  // Value: 汋

Python:

char = '\u6C4B'
print(char)  # Output: 汋

Perl:

my $char = "\x{6C4B}";
print $char;  # Output: 汋

PHP:

$char = "\x{6C4B}";
echo $char;  // Output: 汋

Ruby:

char = "\u{6C4B}"
puts char  # Output: 汋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27723;</p>  <!-- Display: 汋 -->

HTML Hexadecimal:

<p>HTML hex: &#x6C4B;</p>  <!-- Display: 汋 -->

URL Encoding:

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

Encodings

MD5:

3ee30b8ed7e43df874c1fd9fc06d0944

SHA1:

41f3273a1929bfe2b1507ea0b86e1b141e8b6d90

Base64:

5rGL