C:
char c = '\u02CF';
printf("%c\n", c); // Output: ˏ
JavaScript:
const char = '\u02CF';
console.log(char); // Output: ˏ
Java:
char c = '\u02CF';
System.out.println(c); // Output: ˏ
JSON:
{"text": "\u02CF"} // Value: ˏ
Python:
char = '\u02CF'
print(char) # Output: ˏ
Perl:
my $char = "\x{02CF}";
print $char; # Output: ˏ
PHP:
$char = "\x{02CF}";
echo $char; // Output: ˏ
Ruby:
char = "\u{02CF}"
puts char # Output: ˏ
Rust:
let c = '\u{2CF}';
println!("{}", c); // Output: ˏ
Go:
char := '\u02CF'
fmt.Printf("%c\n", char) // Output: ˏ
CSS:
/* CSS content property */
.element::before {
content: "\0002CF"; /* 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%8F
MD5:
4993661c5684f6aec5571a757cdb1667
SHA1:
30c467c2718dfe9931b5c129914abd4494ed7044
Base64:
y48=