C:
char c = '\u02DF';
printf("%c\n", c); // Output: ˟
JavaScript:
const char = '\u02DF';
console.log(char); // Output: ˟
Java:
char c = '\u02DF';
System.out.println(c); // Output: ˟
JSON:
{"text": "\u02DF"} // Value: ˟
Python:
char = '\u02DF'
print(char) # Output: ˟
Perl:
my $char = "\x{02DF}";
print $char; # Output: ˟
PHP:
$char = "\x{02DF}";
echo $char; // Output: ˟
Ruby:
char = "\u{02DF}"
puts char # Output: ˟
Rust:
let c = '\u{2DF}';
println!("{}", c); // Output: ˟
Go:
char := '\u02DF'
fmt.Printf("%c\n", char) // Output: ˟
CSS:
/* CSS content property */
.element::before {
content: "\0002DF"; /* 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=%CB%9F
MD5:
5ed81261543001230558f79c4fe35edf
SHA1:
fd97f6512466e9cd55d2ce259a24d2e6e1b0c251
Base64:
y58=