Unicode Finder

"浂" U+6D42(CJK UNIFIED IDEOGRAPH-6D42)

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

Programming

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

Web

CSS
\006D42
HtmlDecimal
浂
HtmlHexadecimal
浂
Url
%E6%B5%82

Code

MD5
63546e6c252a256e15fbb24b63f617cc
Sha1
60dac290c8d565eb00aecc09ae4a6a4007bf8d7c
Base64
5rWC

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6D42';
console.log(char);  // Output: 浂

Java:

char c = '\u6D42';
System.out.println(c);  // Output: 浂

JSON:

{"text": "\u6D42"}  // Value: 浂

Python:

char = '\u6D42'
print(char)  # Output: 浂

Perl:

my $char = "\x{6D42}";
print $char;  # Output: 浂

PHP:

$char = "\x{6D42}";
echo $char;  // Output: 浂

Ruby:

char = "\u{6D42}"
puts char  # Output: 浂

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27970;</p>  <!-- Display: 浂 -->

HTML Hexadecimal:

<p>HTML hex: &#x6D42;</p>  <!-- Display: 浂 -->

URL Encoding:

// 浂 URL encoding
https://unicodefinder.com/search.php?query=%E6%B5%82

Encodings

MD5:

63546e6c252a256e15fbb24b63f617cc

SHA1:

60dac290c8d565eb00aecc09ae4a6a4007bf8d7c

Base64:

5rWC