C:
char c = '\u031A';
printf("%c\n", c); // Output: ̚
JavaScript:
const char = '\u031A';
console.log(char); // Output: ̚
Java:
char c = '\u031A';
System.out.println(c); // Output: ̚
JSON:
{"text": "\u031A"} // Value: ̚
Python:
char = '\u031A'
print(char) # Output: ̚
Perl:
my $char = "\x{031A}";
print $char; # Output: ̚
PHP:
$char = "\x{031A}";
echo $char; // Output: ̚
Ruby:
char = "\u{031A}"
puts char # Output: ̚
Rust:
let c = '\u{31A}';
println!("{}", c); // Output: ̚
Go:
char := '\u031A'
fmt.Printf("%c\n", char) // Output: ̚
CSS:
/* CSS content property */
.element::before {
content: "\00031A"; /* 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%9A
MD5:
cf6620152ec88cee02e8e61cccd39273
SHA1:
5e926bed0071b0535b75cc4c2b46ae4f37cedac5
Base64:
zJo=