C:
char c = '\u6DDE';
printf("%c\n", c); // Output: 淞
JavaScript:
const char = '\u6DDE';
console.log(char); // Output: 淞
Java:
char c = '\u6DDE';
System.out.println(c); // Output: 淞
JSON:
{"text": "\u6DDE"} // Value: 淞
Python:
char = '\u6DDE'
print(char) # Output: 淞
Perl:
my $char = "\x{6DDE}";
print $char; # Output: 淞
PHP:
$char = "\x{6DDE}";
echo $char; // Output: 淞
Ruby:
char = "\u{6DDE}"
puts char # Output: 淞
Rust:
let c = '\u{6DDE}';
println!("{}", c); // Output: 淞
Go:
char := '\u6DDE'
fmt.Printf("%c\n", char) // Output: 淞
CSS:
/* CSS content property */
.element::before {
content: "\006DDE"; /* 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%9E
MD5:
014c8ecfab34df07bc85f6200bd2d564
SHA1:
137026283fe7fab8ff88019e1a508185e51ccca7
Base64:
5ree