Unicode Finder

"淮" U+6DEE(CJK UNIFIED IDEOGRAPH-6DEE)

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

Programming

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

Web

CSS
\006DEE
HtmlDecimal
淮
HtmlHexadecimal
淮
Url
%E6%B7%AE

Code

MD5
6601f4288860be906406953f344a0533
Sha1
198f7d3ad7a74c20a0af9146b8a6c666bdb3fc86
Base64
5reu

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6DEE';
console.log(char);  // Output: 淮

Java:

char c = '\u6DEE';
System.out.println(c);  // Output: 淮

JSON:

{"text": "\u6DEE"}  // Value: 淮

Python:

char = '\u6DEE'
print(char)  # Output: 淮

Perl:

my $char = "\x{6DEE}";
print $char;  # Output: 淮

PHP:

$char = "\x{6DEE}";
echo $char;  // Output: 淮

Ruby:

char = "\u{6DEE}"
puts char  # Output: 淮

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28142;</p>  <!-- Display: 淮 -->

HTML Hexadecimal:

<p>HTML hex: &#x6DEE;</p>  <!-- Display: 淮 -->

URL Encoding:

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

Encodings

MD5:

6601f4288860be906406953f344a0533

SHA1:

198f7d3ad7a74c20a0af9146b8a6c666bdb3fc86

Base64:

5reu