C:
char c = '\u073D';
printf("%c\n", c); // Output: ܽ
JavaScript:
const char = '\u073D';
console.log(char); // Output: ܽ
Java:
char c = '\u073D';
System.out.println(c); // Output: ܽ
JSON:
{"text": "\u073D"} // Value: ܽ
Python:
char = '\u073D'
print(char) # Output: ܽ
Perl:
my $char = "\x{073D}";
print $char; # Output: ܽ
PHP:
$char = "\x{073D}";
echo $char; // Output: ܽ
Ruby:
char = "\u{073D}"
puts char # Output: ܽ
Rust:
let c = '\u{73D}';
println!("{}", c); // Output: ܽ
Go:
char := '\u073D'
fmt.Printf("%c\n", char) // Output: ܽ
CSS:
/* CSS content property */
.element::before {
content: "\00073D"; /* 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%BD
MD5:
1ce0f43482c67f9f86c614501389eb91
SHA1:
d7d243cf3cd25f26eec86c29b835c4d62706be61
Base64:
3L0=