C:
char c = '\u6DD4';
printf("%c\n", c); // Output: 淔
JavaScript:
const char = '\u6DD4';
console.log(char); // Output: 淔
Java:
char c = '\u6DD4';
System.out.println(c); // Output: 淔
JSON:
{"text": "\u6DD4"} // Value: 淔
Python:
char = '\u6DD4'
print(char) # Output: 淔
Perl:
my $char = "\x{6DD4}";
print $char; # Output: 淔
PHP:
$char = "\x{6DD4}";
echo $char; // Output: 淔
Ruby:
char = "\u{6DD4}"
puts char # Output: 淔
Rust:
let c = '\u{6DD4}';
println!("{}", c); // Output: 淔
Go:
char := '\u6DD4'
fmt.Printf("%c\n", char) // Output: 淔
CSS:
/* CSS content property */
.element::before {
content: "\006DD4"; /* Display: 淔 */
}
HTML Decimal:
<p>HTML decimal: 淔</p> <!-- Display: 淔 -->
HTML Hexadecimal:
<p>HTML hex: 淔</p> <!-- Display: 淔 -->
URL Encoding:
// 淔 URL encoding
https://unicodefinder.com/search.php?query=%E6%B7%94
MD5:
7bcc42ff5f3ffd1d07a8858a6ae8efbd
SHA1:
6f793d1c80e49b5bd17242e3c4a7d262ecdbcd1d
Base64:
5reU