C:
char c = '\u033A';
printf("%c\n", c); // Output: ̺
JavaScript:
const char = '\u033A';
console.log(char); // Output: ̺
Java:
char c = '\u033A';
System.out.println(c); // Output: ̺
JSON:
{"text": "\u033A"} // Value: ̺
Python:
char = '\u033A'
print(char) # Output: ̺
Perl:
my $char = "\x{033A}";
print $char; # Output: ̺
PHP:
$char = "\x{033A}";
echo $char; // Output: ̺
Ruby:
char = "\u{033A}"
puts char # Output: ̺
Rust:
let c = '\u{33A}';
println!("{}", c); // Output: ̺
Go:
char := '\u033A'
fmt.Printf("%c\n", char) // Output: ̺
CSS:
/* CSS content property */
.element::before {
content: "\00033A"; /* 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=%CC%BA
MD5:
3a952bd5bcf3d8448f72f552e1bc376f
SHA1:
e3f73f4f38178f5c560ac79d30c1d871f1b97d47
Base64:
zLo=