C:
char c = '\u0733';
printf("%c\n", c); // Output: ܳ
JavaScript:
const char = '\u0733';
console.log(char); // Output: ܳ
Java:
char c = '\u0733';
System.out.println(c); // Output: ܳ
JSON:
{"text": "\u0733"} // Value: ܳ
Python:
char = '\u0733'
print(char) # Output: ܳ
Perl:
my $char = "\x{0733}";
print $char; # Output: ܳ
PHP:
$char = "\x{0733}";
echo $char; // Output: ܳ
Ruby:
char = "\u{0733}"
puts char # Output: ܳ
Rust:
let c = '\u{733}';
println!("{}", c); // Output: ܳ
Go:
char := '\u0733'
fmt.Printf("%c\n", char) // Output: ܳ
CSS:
/* CSS content property */
.element::before {
content: "\000733"; /* 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%B3
MD5:
70c5992937fcd80f3a26e33233d9ada9
SHA1:
22210e4fc8e59343f2efe00b9163c05caa73f7ad
Base64:
3LM=