Unicode Finder

"浢" U+6D62(CJK UNIFIED IDEOGRAPH-6D62)

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

Programming

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

Web

CSS
\006D62
HtmlDecimal
浢
HtmlHexadecimal
浢
Url
%E6%B5%A2

Code

MD5
78bb4bdcf728e75f29e6537da025418d
Sha1
38fabaa695cd40e4b0209038f67b3c612fa506b9
Base64
5rWi

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6D62';
console.log(char);  // Output: 浢

Java:

char c = '\u6D62';
System.out.println(c);  // Output: 浢

JSON:

{"text": "\u6D62"}  // Value: 浢

Python:

char = '\u6D62'
print(char)  # Output: 浢

Perl:

my $char = "\x{6D62}";
print $char;  # Output: 浢

PHP:

$char = "\x{6D62}";
echo $char;  // Output: 浢

Ruby:

char = "\u{6D62}"
puts char  # Output: 浢

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28002;</p>  <!-- Display: 浢 -->

HTML Hexadecimal:

<p>HTML hex: &#x6D62;</p>  <!-- Display: 浢 -->

URL Encoding:

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

Encodings

MD5:

78bb4bdcf728e75f29e6537da025418d

SHA1:

38fabaa695cd40e4b0209038f67b3c612fa506b9

Base64:

5rWi