C:
char c = '\u07AE';
printf("%c\n", c); // Output: ޮ
JavaScript:
const char = '\u07AE';
console.log(char); // Output: ޮ
Java:
char c = '\u07AE';
System.out.println(c); // Output: ޮ
JSON:
{"text": "\u07AE"} // Value: ޮ
Python:
char = '\u07AE'
print(char) # Output: ޮ
Perl:
my $char = "\x{07AE}";
print $char; # Output: ޮ
PHP:
$char = "\x{07AE}";
echo $char; // Output: ޮ
Ruby:
char = "\u{07AE}"
puts char # Output: ޮ
Rust:
let c = '\u{7AE}';
println!("{}", c); // Output: ޮ
Go:
char := '\u07AE'
fmt.Printf("%c\n", char) // Output: ޮ
CSS:
/* CSS content property */
.element::before {
content: "\0007AE"; /* 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=%DE%AE
MD5:
43ce5f0bdc21bb92f29943a04a796ec9
SHA1:
d5b951c7a538803462214fe2a9031e97acdb5c91
Base64:
3q4=