Unicode Finder

"湌" U+6E4C(CJK UNIFIED IDEOGRAPH-6E4C)

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

Programming

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

Web

CSS
\006E4C
HtmlDecimal
湌
HtmlHexadecimal
湌
Url
%E6%B9%8C

Code

MD5
59a185ebfb7302e7f6ad003dfe4e6582
Sha1
2e7a50ce2a261719fcf5ee6c131cee80a8bee5a3
Base64
5rmM

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6E4C';
console.log(char);  // Output: 湌

Java:

char c = '\u6E4C';
System.out.println(c);  // Output: 湌

JSON:

{"text": "\u6E4C"}  // Value: 湌

Python:

char = '\u6E4C'
print(char)  # Output: 湌

Perl:

my $char = "\x{6E4C}";
print $char;  # Output: 湌

PHP:

$char = "\x{6E4C}";
echo $char;  // Output: 湌

Ruby:

char = "\u{6E4C}"
puts char  # Output: 湌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28236;</p>  <!-- Display: 湌 -->

HTML Hexadecimal:

<p>HTML hex: &#x6E4C;</p>  <!-- Display: 湌 -->

URL Encoding:

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

Encodings

MD5:

59a185ebfb7302e7f6ad003dfe4e6582

SHA1:

2e7a50ce2a261719fcf5ee6c131cee80a8bee5a3

Base64:

5rmM