Unicode Finder

"浰" U+6D70(CJK UNIFIED IDEOGRAPH-6D70)

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

Programming

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

Web

CSS
\006D70
HtmlDecimal
浰
HtmlHexadecimal
浰
Url
%E6%B5%B0

Code

MD5
13724f6234c23c39e5933d7c57bfa7d7
Sha1
9737f921719bcc4194c38450cf6c94d884016700
Base64
5rWw

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6D70';
console.log(char);  // Output: 浰

Java:

char c = '\u6D70';
System.out.println(c);  // Output: 浰

JSON:

{"text": "\u6D70"}  // Value: 浰

Python:

char = '\u6D70'
print(char)  # Output: 浰

Perl:

my $char = "\x{6D70}";
print $char;  # Output: 浰

PHP:

$char = "\x{6D70}";
echo $char;  // Output: 浰

Ruby:

char = "\u{6D70}"
puts char  # Output: 浰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28016;</p>  <!-- Display: 浰 -->

HTML Hexadecimal:

<p>HTML hex: &#x6D70;</p>  <!-- Display: 浰 -->

URL Encoding:

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

Encodings

MD5:

13724f6234c23c39e5933d7c57bfa7d7

SHA1:

9737f921719bcc4194c38450cf6c94d884016700

Base64:

5rWw