C:
char c = '\u0359';
printf("%c\n", c); // Output: ͙
JavaScript:
const char = '\u0359';
console.log(char); // Output: ͙
Java:
char c = '\u0359';
System.out.println(c); // Output: ͙
JSON:
{"text": "\u0359"} // Value: ͙
Python:
char = '\u0359'
print(char) # Output: ͙
Perl:
my $char = "\x{0359}";
print $char; # Output: ͙
PHP:
$char = "\x{0359}";
echo $char; // Output: ͙
Ruby:
char = "\u{0359}"
puts char # Output: ͙
Rust:
let c = '\u{359}';
println!("{}", c); // Output: ͙
Go:
char := '\u0359'
fmt.Printf("%c\n", char) // Output: ͙
CSS:
/* CSS content property */
.element::before {
content: "\000359"; /* 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%99
MD5:
48a19691543f6cffe6eeac28867bf0f5
SHA1:
acf07fa71c689744995523e612897093d54cadcb
Base64:
zZk=