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