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