Unicode Finder

"淥" U+6DE5(CJK UNIFIED IDEOGRAPH-6DE5)

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

Programming

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

Web

CSS
\006DE5
HtmlDecimal
淥
HtmlHexadecimal
淥
Url
%E6%B7%A5

Code

MD5
dc30329bad94fb0a55d5d7159167b9d8
Sha1
4b97492d816362238d73eef3f8c3ee9162cfda62
Base64
5rel

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6DE5';
console.log(char);  // Output: 淥

Java:

char c = '\u6DE5';
System.out.println(c);  // Output: 淥

JSON:

{"text": "\u6DE5"}  // Value: 淥

Python:

char = '\u6DE5'
print(char)  # Output: 淥

Perl:

my $char = "\x{6DE5}";
print $char;  # Output: 淥

PHP:

$char = "\x{6DE5}";
echo $char;  // Output: 淥

Ruby:

char = "\u{6DE5}"
puts char  # Output: 淥

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28133;</p>  <!-- Display: 淥 -->

HTML Hexadecimal:

<p>HTML hex: &#x6DE5;</p>  <!-- Display: 淥 -->

URL Encoding:

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

Encodings

MD5:

dc30329bad94fb0a55d5d7159167b9d8

SHA1:

4b97492d816362238d73eef3f8c3ee9162cfda62

Base64:

5rel