C:
char c = '\u0360';
printf("%c\n", c); // Output: ͠
JavaScript:
const char = '\u0360';
console.log(char); // Output: ͠
Java:
char c = '\u0360';
System.out.println(c); // Output: ͠
JSON:
{"text": "\u0360"} // Value: ͠
Python:
char = '\u0360'
print(char) # Output: ͠
Perl:
my $char = "\x{0360}";
print $char; # Output: ͠
PHP:
$char = "\x{0360}";
echo $char; // Output: ͠
Ruby:
char = "\u{0360}"
puts char # Output: ͠
Rust:
let c = '\u{360}';
println!("{}", c); // Output: ͠
Go:
char := '\u0360'
fmt.Printf("%c\n", char) // Output: ͠
CSS:
/* CSS content property */
.element::before {
content: "\000360"; /* 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%A0
MD5:
80f8c40f33cdbf23f87895570edaf386
SHA1:
a35b1d3b88f93f277db757230c44322cea699a8f
Base64:
zaA=