Unicode Finder

"淧" U+6DE7(CJK UNIFIED IDEOGRAPH-6DE7)

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

Programming

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

Web

CSS
\006DE7
HtmlDecimal
淧
HtmlHexadecimal
淧
Url
%E6%B7%A7

Code

MD5
5d769c94bbf964b955520db7912e731b
Sha1
72c97fee45813763394f8e9fe134016387d008c2
Base64
5ren

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6DE7';
console.log(char);  // Output: 淧

Java:

char c = '\u6DE7';
System.out.println(c);  // Output: 淧

JSON:

{"text": "\u6DE7"}  // Value: 淧

Python:

char = '\u6DE7'
print(char)  # Output: 淧

Perl:

my $char = "\x{6DE7}";
print $char;  # Output: 淧

PHP:

$char = "\x{6DE7}";
echo $char;  // Output: 淧

Ruby:

char = "\u{6DE7}"
puts char  # Output: 淧

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28135;</p>  <!-- Display: 淧 -->

HTML Hexadecimal:

<p>HTML hex: &#x6DE7;</p>  <!-- Display: 淧 -->

URL Encoding:

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

Encodings

MD5:

5d769c94bbf964b955520db7912e731b

SHA1:

72c97fee45813763394f8e9fe134016387d008c2

Base64:

5ren