C:
char c = '\u076E';
printf("%c\n", c); // Output: ݮ
JavaScript:
const char = '\u076E';
console.log(char); // Output: ݮ
Java:
char c = '\u076E';
System.out.println(c); // Output: ݮ
JSON:
{"text": "\u076E"} // Value: ݮ
Python:
char = '\u076E'
print(char) # Output: ݮ
Perl:
my $char = "\x{076E}";
print $char; # Output: ݮ
PHP:
$char = "\x{076E}";
echo $char; // Output: ݮ
Ruby:
char = "\u{076E}"
puts char # Output: ݮ
Rust:
let c = '\u{76E}';
println!("{}", c); // Output: ݮ
Go:
char := '\u076E'
fmt.Printf("%c\n", char) // Output: ݮ
CSS:
/* CSS content property */
.element::before {
content: "\00076E"; /* 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=%DD%AE
MD5:
8b4bdb814a78bc42ef1e9bb0fb76bb25
SHA1:
5a4429ae4edd70a9a2f00a368f6faf0396fad5e3
Base64:
3a4=