Unicode Finder

"溪" U+6EAA(CJK UNIFIED IDEOGRAPH-6EAA)

U+6EAA
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-6EAA

Programming

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

Web

CSS
\006EAA
HtmlDecimal
溪
HtmlHexadecimal
溪
Url
%E6%BA%AA

Code

MD5
d7581d4d25653d1841bf9527fabd9eef
Sha1
d4a46be65af810dcccd4b675e3db94550d5ceaea
Base64
5rqq

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6EAA';
console.log(char);  // Output: 溪

Java:

char c = '\u6EAA';
System.out.println(c);  // Output: 溪

JSON:

{"text": "\u6EAA"}  // Value: 溪

Python:

char = '\u6EAA'
print(char)  # Output: 溪

Perl:

my $char = "\x{6EAA}";
print $char;  # Output: 溪

PHP:

$char = "\x{6EAA}";
echo $char;  // Output: 溪

Ruby:

char = "\u{6EAA}"
puts char  # Output: 溪

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28330;</p>  <!-- Display: 溪 -->

HTML Hexadecimal:

<p>HTML hex: &#x6EAA;</p>  <!-- Display: 溪 -->

URL Encoding:

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

Encodings

MD5:

d7581d4d25653d1841bf9527fabd9eef

SHA1:

d4a46be65af810dcccd4b675e3db94550d5ceaea

Base64:

5rqq