C:
char c = '\u0704';
printf("%c\n", c); // Output: ܄
JavaScript:
const char = '\u0704';
console.log(char); // Output: ܄
Java:
char c = '\u0704';
System.out.println(c); // Output: ܄
JSON:
{"text": "\u0704"} // Value: ܄
Python:
char = '\u0704'
print(char) # Output: ܄
Perl:
my $char = "\x{0704}";
print $char; # Output: ܄
PHP:
$char = "\x{0704}";
echo $char; // Output: ܄
Ruby:
char = "\u{0704}"
puts char # Output: ܄
Rust:
let c = '\u{704}';
println!("{}", c); // Output: ܄
Go:
char := '\u0704'
fmt.Printf("%c\n", char) // Output: ܄
CSS:
/* CSS content property */
.element::before {
content: "\000704"; /* 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%84
MD5:
951b66f259733281cec4fd2f2d25fa73
SHA1:
d006cc177a4e7ca21f8f4920afc9fef9e38e7f21
Base64:
3IQ=