C:
char c = '\u0737';
printf("%c\n", c); // Output: ܷ
JavaScript:
const char = '\u0737';
console.log(char); // Output: ܷ
Java:
char c = '\u0737';
System.out.println(c); // Output: ܷ
JSON:
{"text": "\u0737"} // Value: ܷ
Python:
char = '\u0737'
print(char) # Output: ܷ
Perl:
my $char = "\x{0737}";
print $char; # Output: ܷ
PHP:
$char = "\x{0737}";
echo $char; // Output: ܷ
Ruby:
char = "\u{0737}"
puts char # Output: ܷ
Rust:
let c = '\u{737}';
println!("{}", c); // Output: ܷ
Go:
char := '\u0737'
fmt.Printf("%c\n", char) // Output: ܷ
CSS:
/* CSS content property */
.element::before {
content: "\000737"; /* 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%B7
MD5:
ffc6ccc3f8458c4cc02d8c04eb1ea093
SHA1:
97dac70ec109d55afa9e7809e134d9209f66d953
Base64:
3Lc=