C:
char c = '\u030A';
printf("%c\n", c); // Output: ̊
JavaScript:
const char = '\u030A';
console.log(char); // Output: ̊
Java:
char c = '\u030A';
System.out.println(c); // Output: ̊
JSON:
{"text": "\u030A"} // Value: ̊
Python:
char = '\u030A'
print(char) # Output: ̊
Perl:
my $char = "\x{030A}";
print $char; # Output: ̊
PHP:
$char = "\x{030A}";
echo $char; // Output: ̊
Ruby:
char = "\u{030A}"
puts char # Output: ̊
Rust:
let c = '\u{30A}';
println!("{}", c); // Output: ̊
Go:
char := '\u030A'
fmt.Printf("%c\n", char) // Output: ̊
CSS:
/* CSS content property */
.element::before {
content: "\00030A"; /* 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%8A
MD5:
d77588388f7e0f742faab009ed37245b
SHA1:
41872a5ab6579d2324975fc984be8a0c329c27ee
Base64:
zIo=