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