Unicode Finder

"浧" U+6D67(CJK UNIFIED IDEOGRAPH-6D67)

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

Programming

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

Web

CSS
\006D67
HtmlDecimal
浧
HtmlHexadecimal
浧
Url
%E6%B5%A7

Code

MD5
91c88f4c23f0cec58b19001991dfc2b4
Sha1
04a7e4f35fc306811c3e0ecd30007e4f9bc93304
Base64
5rWn

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6D67';
console.log(char);  // Output: 浧

Java:

char c = '\u6D67';
System.out.println(c);  // Output: 浧

JSON:

{"text": "\u6D67"}  // Value: 浧

Python:

char = '\u6D67'
print(char)  # Output: 浧

Perl:

my $char = "\x{6D67}";
print $char;  # Output: 浧

PHP:

$char = "\x{6D67}";
echo $char;  // Output: 浧

Ruby:

char = "\u{6D67}"
puts char  # Output: 浧

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28007;</p>  <!-- Display: 浧 -->

HTML Hexadecimal:

<p>HTML hex: &#x6D67;</p>  <!-- Display: 浧 -->

URL Encoding:

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

Encodings

MD5:

91c88f4c23f0cec58b19001991dfc2b4

SHA1:

04a7e4f35fc306811c3e0ecd30007e4f9bc93304

Base64:

5rWn