Unicode Finder

"汈" U+6C48(CJK UNIFIED IDEOGRAPH-6C48)

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

Programming

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

Web

CSS
\006C48
HtmlDecimal
汈
HtmlHexadecimal
汈
Url
%E6%B1%88

Code

MD5
fd23c05f958a7352a91b4cd84034b0bd
Sha1
523cd08949a348ea9f4c74a46436cd8200151d67
Base64
5rGI

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6C48';
console.log(char);  // Output: 汈

Java:

char c = '\u6C48';
System.out.println(c);  // Output: 汈

JSON:

{"text": "\u6C48"}  // Value: 汈

Python:

char = '\u6C48'
print(char)  # Output: 汈

Perl:

my $char = "\x{6C48}";
print $char;  # Output: 汈

PHP:

$char = "\x{6C48}";
echo $char;  // Output: 汈

Ruby:

char = "\u{6C48}"
puts char  # Output: 汈

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27720;</p>  <!-- Display: 汈 -->

HTML Hexadecimal:

<p>HTML hex: &#x6C48;</p>  <!-- Display: 汈 -->

URL Encoding:

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

Encodings

MD5:

fd23c05f958a7352a91b4cd84034b0bd

SHA1:

523cd08949a348ea9f4c74a46436cd8200151d67

Base64:

5rGI