C:
char c = '\u0DDE';
printf("%c\n", c); // Output: ෞ
JavaScript:
const char = '\u0DDE';
console.log(char); // Output: ෞ
Java:
char c = '\u0DDE';
System.out.println(c); // Output: ෞ
JSON:
{"text": "\u0DDE"} // Value: ෞ
Python:
char = '\u0DDE'
print(char) # Output: ෞ
Perl:
my $char = "\x{0DDE}";
print $char; # Output: ෞ
PHP:
$char = "\x{0DDE}";
echo $char; // Output: ෞ
Ruby:
char = "\u{0DDE}"
puts char # Output: ෞ
Rust:
let c = '\u{DDE}';
println!("{}", c); // Output: ෞ
Go:
char := '\u0DDE'
fmt.Printf("%c\n", char) // Output: ෞ
CSS:
/* CSS content property */
.element::before {
content: "\000DDE"; /* 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=%E0%B7%9E
MD5:
c82da0b49ffe6d0c8886020da48a2e49
SHA1:
1eb335839370bdcf917911dd5d4738a48e33a8ae
Base64:
4Lee