Unicode Finder

"浌" U+6D4C(CJK UNIFIED IDEOGRAPH-6D4C)

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

Programming

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

Web

CSS
\006D4C
HtmlDecimal
浌
HtmlHexadecimal
浌
Url
%E6%B5%8C

Code

MD5
1fae75fc44621eb35628512878045069
Sha1
860c9862ac5e96537d671eb3bc30d763bd338a01
Base64
5rWM

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6D4C';
console.log(char);  // Output: 浌

Java:

char c = '\u6D4C';
System.out.println(c);  // Output: 浌

JSON:

{"text": "\u6D4C"}  // Value: 浌

Python:

char = '\u6D4C'
print(char)  # Output: 浌

Perl:

my $char = "\x{6D4C}";
print $char;  # Output: 浌

PHP:

$char = "\x{6D4C}";
echo $char;  // Output: 浌

Ruby:

char = "\u{6D4C}"
puts char  # Output: 浌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27980;</p>  <!-- Display: 浌 -->

HTML Hexadecimal:

<p>HTML hex: &#x6D4C;</p>  <!-- Display: 浌 -->

URL Encoding:

// 浌 URL encoding
https://unicodefinder.com/search.php?query=%E6%B5%8C

Encodings

MD5:

1fae75fc44621eb35628512878045069

SHA1:

860c9862ac5e96537d671eb3bc30d763bd338a01

Base64:

5rWM