Unicode Finder

"淲" U+6DF2(CJK UNIFIED IDEOGRAPH-6DF2)

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

Programming

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

Web

CSS
\006DF2
HtmlDecimal
淲
HtmlHexadecimal
淲
Url
%E6%B7%B2

Code

MD5
4639c2085897e9641e8dfb7b82d368bd
Sha1
e0a3c49df3ae10f44737acaf7b3324faebc772cc
Base64
5rey

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6DF2';
console.log(char);  // Output: 淲

Java:

char c = '\u6DF2';
System.out.println(c);  // Output: 淲

JSON:

{"text": "\u6DF2"}  // Value: 淲

Python:

char = '\u6DF2'
print(char)  # Output: 淲

Perl:

my $char = "\x{6DF2}";
print $char;  # Output: 淲

PHP:

$char = "\x{6DF2}";
echo $char;  // Output: 淲

Ruby:

char = "\u{6DF2}"
puts char  # Output: 淲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28146;</p>  <!-- Display: 淲 -->

HTML Hexadecimal:

<p>HTML hex: &#x6DF2;</p>  <!-- Display: 淲 -->

URL Encoding:

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

Encodings

MD5:

4639c2085897e9641e8dfb7b82d368bd

SHA1:

e0a3c49df3ae10f44737acaf7b3324faebc772cc

Base64:

5rey