Unicode Finder

"淫" U+6DEB(CJK UNIFIED IDEOGRAPH-6DEB)

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

Programming

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

Web

CSS
\006DEB
HtmlDecimal
淫
HtmlHexadecimal
淫
Url
%E6%B7%AB

Code

MD5
8d86a2b92dcd8c7832a7eff5fc01fc4b
Sha1
b21a09527303d7e8e0e93e63af36b2fb4dd9c74b
Base64
5rer

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6DEB';
console.log(char);  // Output: 淫

Java:

char c = '\u6DEB';
System.out.println(c);  // Output: 淫

JSON:

{"text": "\u6DEB"}  // Value: 淫

Python:

char = '\u6DEB'
print(char)  # Output: 淫

Perl:

my $char = "\x{6DEB}";
print $char;  # Output: 淫

PHP:

$char = "\x{6DEB}";
echo $char;  // Output: 淫

Ruby:

char = "\u{6DEB}"
puts char  # Output: 淫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28139;</p>  <!-- Display: 淫 -->

HTML Hexadecimal:

<p>HTML hex: &#x6DEB;</p>  <!-- Display: 淫 -->

URL Encoding:

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

Encodings

MD5:

8d86a2b92dcd8c7832a7eff5fc01fc4b

SHA1:

b21a09527303d7e8e0e93e63af36b2fb4dd9c74b

Base64:

5rer