C:
char c = '\u0732';
printf("%c\n", c); // Output: ܲ
JavaScript:
const char = '\u0732';
console.log(char); // Output: ܲ
Java:
char c = '\u0732';
System.out.println(c); // Output: ܲ
JSON:
{"text": "\u0732"} // Value: ܲ
Python:
char = '\u0732'
print(char) # Output: ܲ
Perl:
my $char = "\x{0732}";
print $char; # Output: ܲ
PHP:
$char = "\x{0732}";
echo $char; // Output: ܲ
Ruby:
char = "\u{0732}"
puts char # Output: ܲ
Rust:
let c = '\u{732}';
println!("{}", c); // Output: ܲ
Go:
char := '\u0732'
fmt.Printf("%c\n", char) // Output: ܲ
CSS:
/* CSS content property */
.element::before {
content: "\000732"; /* 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%B2
MD5:
34190b25736de5bbc37c524f47fd7447
SHA1:
9df9705552b45eb838eae75e5db85a821e963629
Base64:
3LI=