C:
char c = '\u07F3';
printf("%c\n", c); // Output: ߳
JavaScript:
const char = '\u07F3';
console.log(char); // Output: ߳
Java:
char c = '\u07F3';
System.out.println(c); // Output: ߳
JSON:
{"text": "\u07F3"} // Value: ߳
Python:
char = '\u07F3'
print(char) # Output: ߳
Perl:
my $char = "\x{07F3}";
print $char; # Output: ߳
PHP:
$char = "\x{07F3}";
echo $char; // Output: ߳
Ruby:
char = "\u{07F3}"
puts char # Output: ߳
Rust:
let c = '\u{7F3}';
println!("{}", c); // Output: ߳
Go:
char := '\u07F3'
fmt.Printf("%c\n", char) // Output: ߳
CSS:
/* CSS content property */
.element::before {
content: "\0007F3"; /* 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%B3
MD5:
5e6007c7cfcde2604a96d7ad71addf1c
SHA1:
a949302ba0849e392219035f94b3d589b97764d9
Base64:
37M=