Unicode Finder

"浀" U+6D40(CJK UNIFIED IDEOGRAPH-6D40)

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

Programming

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

Web

CSS
\006D40
HtmlDecimal
浀
HtmlHexadecimal
浀
Url
%E6%B5%80

Code

MD5
96ff1df9d617ec74282f3927c34b801d
Sha1
8f12935901d204878c6d0af02d0c060e5f6069a8
Base64
5rWA

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6D40';
console.log(char);  // Output: 浀

Java:

char c = '\u6D40';
System.out.println(c);  // Output: 浀

JSON:

{"text": "\u6D40"}  // Value: 浀

Python:

char = '\u6D40'
print(char)  # Output: 浀

Perl:

my $char = "\x{6D40}";
print $char;  # Output: 浀

PHP:

$char = "\x{6D40}";
echo $char;  // Output: 浀

Ruby:

char = "\u{6D40}"
puts char  # Output: 浀

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27968;</p>  <!-- Display: 浀 -->

HTML Hexadecimal:

<p>HTML hex: &#x6D40;</p>  <!-- Display: 浀 -->

URL Encoding:

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

Encodings

MD5:

96ff1df9d617ec74282f3927c34b801d

SHA1:

8f12935901d204878c6d0af02d0c060e5f6069a8

Base64:

5rWA