Unicode Finder

"溬" U+6EAC(CJK UNIFIED IDEOGRAPH-6EAC)

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

Programming

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

Web

CSS
\006EAC
HtmlDecimal
溬
HtmlHexadecimal
溬
Url
%E6%BA%AC

Code

MD5
ac6ddf3d0968dad5e02d86f42bff419a
Sha1
78ef1f2a6b3e8cd10951e3852b85a73657c69dbf
Base64
5rqs

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6EAC';
console.log(char);  // Output: 溬

Java:

char c = '\u6EAC';
System.out.println(c);  // Output: 溬

JSON:

{"text": "\u6EAC"}  // Value: 溬

Python:

char = '\u6EAC'
print(char)  # Output: 溬

Perl:

my $char = "\x{6EAC}";
print $char;  # Output: 溬

PHP:

$char = "\x{6EAC}";
echo $char;  // Output: 溬

Ruby:

char = "\u{6EAC}"
puts char  # Output: 溬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28332;</p>  <!-- Display: 溬 -->

HTML Hexadecimal:

<p>HTML hex: &#x6EAC;</p>  <!-- Display: 溬 -->

URL Encoding:

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

Encodings

MD5:

ac6ddf3d0968dad5e02d86f42bff419a

SHA1:

78ef1f2a6b3e8cd10951e3852b85a73657c69dbf

Base64:

5rqs