Unicode Finder

"浞" U+6D5E(CJK UNIFIED IDEOGRAPH-6D5E)

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

Programming

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

Web

CSS
\006D5E
HtmlDecimal
浞
HtmlHexadecimal
浞
Url
%E6%B5%9E

Code

MD5
3dcd7be6d7b567b01092e0fc7dab175d
Sha1
545ea32d41d2befea1de26233a1620fc326b4a6c
Base64
5rWe

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6D5E';
console.log(char);  // Output: 浞

Java:

char c = '\u6D5E';
System.out.println(c);  // Output: 浞

JSON:

{"text": "\u6D5E"}  // Value: 浞

Python:

char = '\u6D5E'
print(char)  # Output: 浞

Perl:

my $char = "\x{6D5E}";
print $char;  # Output: 浞

PHP:

$char = "\x{6D5E}";
echo $char;  // Output: 浞

Ruby:

char = "\u{6D5E}"
puts char  # Output: 浞

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27998;</p>  <!-- Display: 浞 -->

HTML Hexadecimal:

<p>HTML hex: &#x6D5E;</p>  <!-- Display: 浞 -->

URL Encoding:

// 浞 URL encoding
https://unicodefinder.com/search.php?query=%E6%B5%9E

Encodings

MD5:

3dcd7be6d7b567b01092e0fc7dab175d

SHA1:

545ea32d41d2befea1de26233a1620fc326b4a6c

Base64:

5rWe