C:
char c = '\u07EC';
printf("%c\n", c); // Output: ߬
JavaScript:
const char = '\u07EC';
console.log(char); // Output: ߬
Java:
char c = '\u07EC';
System.out.println(c); // Output: ߬
JSON:
{"text": "\u07EC"} // Value: ߬
Python:
char = '\u07EC'
print(char) # Output: ߬
Perl:
my $char = "\x{07EC}";
print $char; # Output: ߬
PHP:
$char = "\x{07EC}";
echo $char; // Output: ߬
Ruby:
char = "\u{07EC}"
puts char # Output: ߬
Rust:
let c = '\u{7EC}';
println!("{}", c); // Output: ߬
Go:
char := '\u07EC'
fmt.Printf("%c\n", char) // Output: ߬
CSS:
/* CSS content property */
.element::before {
content: "\0007EC"; /* 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=%DF%AC
MD5:
15a61b2bfde4ec4c573528b62255e1f2
SHA1:
66cdcff8e1fb5ea57dcee96f862b185afbf19778
Base64:
36w=