C:
char c = '\u0CED';
printf("%c\n", c); // Output: ೭
JavaScript:
const char = '\u0CED';
console.log(char); // Output: ೭
Java:
char c = '\u0CED';
System.out.println(c); // Output: ೭
JSON:
{"text": "\u0CED"} // Value: ೭
Python:
char = '\u0CED'
print(char) # Output: ೭
Perl:
my $char = "\x{0CED}";
print $char; # Output: ೭
PHP:
$char = "\x{0CED}";
echo $char; // Output: ೭
Ruby:
char = "\u{0CED}"
puts char # Output: ೭
Rust:
let c = '\u{CED}';
println!("{}", c); // Output: ೭
Go:
char := '\u0CED'
fmt.Printf("%c\n", char) // Output: ೭
CSS:
/* CSS content property */
.element::before {
content: "\000CED"; /* 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%B3%AD
MD5:
ccf105185de7ebfb42a0726cb6d76e96
SHA1:
85f6160d7e701de15eaf13f54d4c31f2c5d39306
Base64:
4LOt