C:
char c = '\u07CF';
printf("%c\n", c); // Output: ߏ
JavaScript:
const char = '\u07CF';
console.log(char); // Output: ߏ
Java:
char c = '\u07CF';
System.out.println(c); // Output: ߏ
JSON:
{"text": "\u07CF"} // Value: ߏ
Python:
char = '\u07CF'
print(char) # Output: ߏ
Perl:
my $char = "\x{07CF}";
print $char; # Output: ߏ
PHP:
$char = "\x{07CF}";
echo $char; // Output: ߏ
Ruby:
char = "\u{07CF}"
puts char # Output: ߏ
Rust:
let c = '\u{7CF}';
println!("{}", c); // Output: ߏ
Go:
char := '\u07CF'
fmt.Printf("%c\n", char) // Output: ߏ
CSS:
/* CSS content property */
.element::before {
content: "\0007CF"; /* 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%8F
MD5:
5189ca1929f59bc16ddf4f05c13b1110
SHA1:
9ffc9db7a92f86142573ae604fe98c61b3a92baa
Base64:
348=