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