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