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