C:
char c = '\u02D5';
printf("%c\n", c); // Output: ˕
JavaScript:
const char = '\u02D5';
console.log(char); // Output: ˕
Java:
char c = '\u02D5';
System.out.println(c); // Output: ˕
JSON:
{"text": "\u02D5"} // Value: ˕
Python:
char = '\u02D5'
print(char) # Output: ˕
Perl:
my $char = "\x{02D5}";
print $char; # Output: ˕
PHP:
$char = "\x{02D5}";
echo $char; // Output: ˕
Ruby:
char = "\u{02D5}"
puts char # Output: ˕
Rust:
let c = '\u{2D5}';
println!("{}", c); // Output: ˕
Go:
char := '\u02D5'
fmt.Printf("%c\n", char) // Output: ˕
CSS:
/* CSS content property */
.element::before {
content: "\0002D5"; /* 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%95
MD5:
db364dfaf846119dfcee9305db96fbf2
SHA1:
8692a472556173cd7a863aaefc76047320d75ad6
Base64:
y5U=