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