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