Unicode Finder

"溮" U+6EAE(CJK UNIFIED IDEOGRAPH-6EAE)

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

Programming

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

Web

CSS
\006EAE
HtmlDecimal
溮
HtmlHexadecimal
溮
Url
%E6%BA%AE

Code

MD5
fdb4849858a522fe2f98fcd9562c721a
Sha1
6d987d213ee9df27dbdc642cf945b3dadd3e250f
Base64
5rqu

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6EAE';
console.log(char);  // Output: 溮

Java:

char c = '\u6EAE';
System.out.println(c);  // Output: 溮

JSON:

{"text": "\u6EAE"}  // Value: 溮

Python:

char = '\u6EAE'
print(char)  # Output: 溮

Perl:

my $char = "\x{6EAE}";
print $char;  # Output: 溮

PHP:

$char = "\x{6EAE}";
echo $char;  // Output: 溮

Ruby:

char = "\u{6EAE}"
puts char  # Output: 溮

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28334;</p>  <!-- Display: 溮 -->

HTML Hexadecimal:

<p>HTML hex: &#x6EAE;</p>  <!-- Display: 溮 -->

URL Encoding:

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

Encodings

MD5:

fdb4849858a522fe2f98fcd9562c721a

SHA1:

6d987d213ee9df27dbdc642cf945b3dadd3e250f

Base64:

5rqu