C:
char c = '\u02CB';
printf("%c\n", c); // Output: ˋ
JavaScript:
const char = '\u02CB';
console.log(char); // Output: ˋ
Java:
char c = '\u02CB';
System.out.println(c); // Output: ˋ
JSON:
{"text": "\u02CB"} // Value: ˋ
Python:
char = '\u02CB'
print(char) # Output: ˋ
Perl:
my $char = "\x{02CB}";
print $char; # Output: ˋ
PHP:
$char = "\x{02CB}";
echo $char; // Output: ˋ
Ruby:
char = "\u{02CB}"
puts char # Output: ˋ
Rust:
let c = '\u{2CB}';
println!("{}", c); // Output: ˋ
Go:
char := '\u02CB'
fmt.Printf("%c\n", char) // Output: ˋ
CSS:
/* CSS content property */
.element::before {
content: "\0002CB"; /* 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%8B
MD5:
0b8df409542c7bbe5ae04a0c2c3098a3
SHA1:
303679dac108ac755f6fd63d6d566bd0b03feb90
Base64:
y4s=