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