Unicode Finder

"混" U+6DF7(CJK UNIFIED IDEOGRAPH-6DF7)

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

Programming

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

Web

CSS
\006DF7
HtmlDecimal
混
HtmlHexadecimal
混
Url
%E6%B7%B7

Code

MD5
1e6ebf6b7361ef1bb4d43bb74e31ac19
Sha1
5d0bae6e7463abca7a0b4807458a253fca0d731c
Base64
5re3

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6DF7';
console.log(char);  // Output: 混

Java:

char c = '\u6DF7';
System.out.println(c);  // Output: 混

JSON:

{"text": "\u6DF7"}  // Value: 混

Python:

char = '\u6DF7'
print(char)  # Output: 混

Perl:

my $char = "\x{6DF7}";
print $char;  # Output: 混

PHP:

$char = "\x{6DF7}";
echo $char;  // Output: 混

Ruby:

char = "\u{6DF7}"
puts char  # Output: 混

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28151;</p>  <!-- Display: 混 -->

HTML Hexadecimal:

<p>HTML hex: &#x6DF7;</p>  <!-- Display: 混 -->

URL Encoding:

// 混 URL encoding
https://unicodefinder.com/search.php?query=%E6%B7%B7

Encodings

MD5:

1e6ebf6b7361ef1bb4d43bb74e31ac19

SHA1:

5d0bae6e7463abca7a0b4807458a253fca0d731c

Base64:

5re3