C:
char c = '\u0330';
printf("%c\n", c); // Output: ̰
JavaScript:
const char = '\u0330';
console.log(char); // Output: ̰
Java:
char c = '\u0330';
System.out.println(c); // Output: ̰
JSON:
{"text": "\u0330"} // Value: ̰
Python:
char = '\u0330'
print(char) # Output: ̰
Perl:
my $char = "\x{0330}";
print $char; # Output: ̰
PHP:
$char = "\x{0330}";
echo $char; // Output: ̰
Ruby:
char = "\u{0330}"
puts char # Output: ̰
Rust:
let c = '\u{330}';
println!("{}", c); // Output: ̰
Go:
char := '\u0330'
fmt.Printf("%c\n", char) // Output: ̰
CSS:
/* CSS content property */
.element::before {
content: "\000330"; /* 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%B0
MD5:
b178b0adb1c12a13490bf7d68011fc2b
SHA1:
8916ee3588e4f188f0711c8e357b9f51c23f25de
Base64:
zLA=