C:
char c = '\u0310';
printf("%c\n", c); // Output: ̐
JavaScript:
const char = '\u0310';
console.log(char); // Output: ̐
Java:
char c = '\u0310';
System.out.println(c); // Output: ̐
JSON:
{"text": "\u0310"} // Value: ̐
Python:
char = '\u0310'
print(char) # Output: ̐
Perl:
my $char = "\x{0310}";
print $char; # Output: ̐
PHP:
$char = "\x{0310}";
echo $char; // Output: ̐
Ruby:
char = "\u{0310}"
puts char # Output: ̐
Rust:
let c = '\u{310}';
println!("{}", c); // Output: ̐
Go:
char := '\u0310'
fmt.Printf("%c\n", char) // Output: ̐
CSS:
/* CSS content property */
.element::before {
content: "\000310"; /* 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%90
MD5:
8cc6b90080eae33f7ca3712093898ad9
SHA1:
01fb82b5d08b2f134d4964eb8544f2d0881b89fd
Base64:
zJA=