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