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