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