C:
char c = '\u0318';
printf("%c\n", c); // Output: ̘
JavaScript:
const char = '\u0318';
console.log(char); // Output: ̘
Java:
char c = '\u0318';
System.out.println(c); // Output: ̘
JSON:
{"text": "\u0318"} // Value: ̘
Python:
char = '\u0318'
print(char) # Output: ̘
Perl:
my $char = "\x{0318}";
print $char; # Output: ̘
PHP:
$char = "\x{0318}";
echo $char; // Output: ̘
Ruby:
char = "\u{0318}"
puts char # Output: ̘
Rust:
let c = '\u{318}';
println!("{}", c); // Output: ̘
Go:
char := '\u0318'
fmt.Printf("%c\n", char) // Output: ̘
CSS:
/* CSS content property */
.element::before {
content: "\000318"; /* 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%98
MD5:
21eeed050f0f46232ac6f0eed30f75c3
SHA1:
023baa519fa474f6cdc46ed3b2a802e4a1a27e97
Base64:
zJg=