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