C:
char c = '\u0708';
printf("%c\n", c); // Output: ܈
JavaScript:
const char = '\u0708';
console.log(char); // Output: ܈
Java:
char c = '\u0708';
System.out.println(c); // Output: ܈
JSON:
{"text": "\u0708"} // Value: ܈
Python:
char = '\u0708'
print(char) # Output: ܈
Perl:
my $char = "\x{0708}";
print $char; # Output: ܈
PHP:
$char = "\x{0708}";
echo $char; // Output: ܈
Ruby:
char = "\u{0708}"
puts char # Output: ܈
Rust:
let c = '\u{708}';
println!("{}", c); // Output: ܈
Go:
char := '\u0708'
fmt.Printf("%c\n", char) // Output: ܈
CSS:
/* CSS content property */
.element::before {
content: "\000708"; /* 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=%DC%88
MD5:
1823465fcc4304e5aa2fbe42ed734548
SHA1:
d82b2cd7ec88ec9a14c21d5d28d7f698ac84eb9f
Base64:
3Ig=