C:
char c = '\u0350';
printf("%c\n", c); // Output: ͐
JavaScript:
const char = '\u0350';
console.log(char); // Output: ͐
Java:
char c = '\u0350';
System.out.println(c); // Output: ͐
JSON:
{"text": "\u0350"} // Value: ͐
Python:
char = '\u0350'
print(char) # Output: ͐
Perl:
my $char = "\x{0350}";
print $char; # Output: ͐
PHP:
$char = "\x{0350}";
echo $char; // Output: ͐
Ruby:
char = "\u{0350}"
puts char # Output: ͐
Rust:
let c = '\u{350}';
println!("{}", c); // Output: ͐
Go:
char := '\u0350'
fmt.Printf("%c\n", char) // Output: ͐
CSS:
/* CSS content property */
.element::before {
content: "\000350"; /* 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%90
MD5:
9910251d89cf2db1302adc1c02aed28a
SHA1:
21ab916b1517a8e0291f8a26479cbe1fe927e981
Base64:
zZA=