C:
char c = '\u0361';
printf("%c\n", c); // Output: ͡
JavaScript:
const char = '\u0361';
console.log(char); // Output: ͡
Java:
char c = '\u0361';
System.out.println(c); // Output: ͡
JSON:
{"text": "\u0361"} // Value: ͡
Python:
char = '\u0361'
print(char) # Output: ͡
Perl:
my $char = "\x{0361}";
print $char; # Output: ͡
PHP:
$char = "\x{0361}";
echo $char; // Output: ͡
Ruby:
char = "\u{0361}"
puts char # Output: ͡
Rust:
let c = '\u{361}';
println!("{}", c); // Output: ͡
Go:
char := '\u0361'
fmt.Printf("%c\n", char) // Output: ͡
CSS:
/* CSS content property */
.element::before {
content: "\000361"; /* 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=%CD%A1
MD5:
fce408c4bf5a741eaaa00a01d87430e5
SHA1:
5e1261a7fa123da4b06600ad2b6eb363dd9f0d82
Base64:
zaE=