C:
char c = '\u6DF2';
printf("%c\n", c); // Output: 淲
JavaScript:
const char = '\u6DF2';
console.log(char); // Output: 淲
Java:
char c = '\u6DF2';
System.out.println(c); // Output: 淲
JSON:
{"text": "\u6DF2"} // Value: 淲
Python:
char = '\u6DF2'
print(char) # Output: 淲
Perl:
my $char = "\x{6DF2}";
print $char; # Output: 淲
PHP:
$char = "\x{6DF2}";
echo $char; // Output: 淲
Ruby:
char = "\u{6DF2}"
puts char # Output: 淲
Rust:
let c = '\u{6DF2}';
println!("{}", c); // Output: 淲
Go:
char := '\u6DF2'
fmt.Printf("%c\n", char) // Output: 淲
CSS:
/* CSS content property */
.element::before {
content: "\006DF2"; /* 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%B2
MD5:
4639c2085897e9641e8dfb7b82d368bd
SHA1:
e0a3c49df3ae10f44737acaf7b3324faebc772cc
Base64:
5rey