Unicode Finder

"湬" U+6E6C(CJK UNIFIED IDEOGRAPH-6E6C)

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

Programming

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

Web

CSS
\006E6C
HtmlDecimal
湬
HtmlHexadecimal
湬
Url
%E6%B9%AC

Code

MD5
e38a3ab58421f5b0dbc588ad87da2eb0
Sha1
797fe4b8a4a7e6d74e5905d464f457ea43890e49
Base64
5rms

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6E6C';
console.log(char);  // Output: 湬

Java:

char c = '\u6E6C';
System.out.println(c);  // Output: 湬

JSON:

{"text": "\u6E6C"}  // Value: 湬

Python:

char = '\u6E6C'
print(char)  # Output: 湬

Perl:

my $char = "\x{6E6C}";
print $char;  # Output: 湬

PHP:

$char = "\x{6E6C}";
echo $char;  // Output: 湬

Ruby:

char = "\u{6E6C}"
puts char  # Output: 湬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28268;</p>  <!-- Display: 湬 -->

HTML Hexadecimal:

<p>HTML hex: &#x6E6C;</p>  <!-- Display: 湬 -->

URL Encoding:

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

Encodings

MD5:

e38a3ab58421f5b0dbc588ad87da2eb0

SHA1:

797fe4b8a4a7e6d74e5905d464f457ea43890e49

Base64:

5rms