C:
char c = '\u0355';
printf("%c\n", c); // Output: ͕
JavaScript:
const char = '\u0355';
console.log(char); // Output: ͕
Java:
char c = '\u0355';
System.out.println(c); // Output: ͕
JSON:
{"text": "\u0355"} // Value: ͕
Python:
char = '\u0355'
print(char) # Output: ͕
Perl:
my $char = "\x{0355}";
print $char; # Output: ͕
PHP:
$char = "\x{0355}";
echo $char; // Output: ͕
Ruby:
char = "\u{0355}"
puts char # Output: ͕
Rust:
let c = '\u{355}';
println!("{}", c); // Output: ͕
Go:
char := '\u0355'
fmt.Printf("%c\n", char) // Output: ͕
CSS:
/* CSS content property */
.element::before {
content: "\000355"; /* 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%95
MD5:
f35174843aa0dee4e58e257590b67e53
SHA1:
a12f77d09d8c48535ba2ed45cecee1ed35180b7e
Base64:
zZU=