C:
char c = '\u0734';
printf("%c\n", c); // Output: ܴ
JavaScript:
const char = '\u0734';
console.log(char); // Output: ܴ
Java:
char c = '\u0734';
System.out.println(c); // Output: ܴ
JSON:
{"text": "\u0734"} // Value: ܴ
Python:
char = '\u0734'
print(char) # Output: ܴ
Perl:
my $char = "\x{0734}";
print $char; # Output: ܴ
PHP:
$char = "\x{0734}";
echo $char; // Output: ܴ
Ruby:
char = "\u{0734}"
puts char # Output: ܴ
Rust:
let c = '\u{734}';
println!("{}", c); // Output: ܴ
Go:
char := '\u0734'
fmt.Printf("%c\n", char) // Output: ܴ
CSS:
/* CSS content property */
.element::before {
content: "\000734"; /* 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%B4
MD5:
0c09acafa62387079c82906049ae8c2e
SHA1:
269beee447af53958a0610e0ef8643a00befa328
Base64:
3LQ=