C:
char c = '\u07D8';
printf("%c\n", c); // Output: ߘ
JavaScript:
const char = '\u07D8';
console.log(char); // Output: ߘ
Java:
char c = '\u07D8';
System.out.println(c); // Output: ߘ
JSON:
{"text": "\u07D8"} // Value: ߘ
Python:
char = '\u07D8'
print(char) # Output: ߘ
Perl:
my $char = "\x{07D8}";
print $char; # Output: ߘ
PHP:
$char = "\x{07D8}";
echo $char; // Output: ߘ
Ruby:
char = "\u{07D8}"
puts char # Output: ߘ
Rust:
let c = '\u{7D8}';
println!("{}", c); // Output: ߘ
Go:
char := '\u07D8'
fmt.Printf("%c\n", char) // Output: ߘ
CSS:
/* CSS content property */
.element::before {
content: "\0007D8"; /* 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=%DF%98
MD5:
1d7bd083d05ef41fc1d54e2ce5fbaf14
SHA1:
84cd3dc8f4834c3b9671fda9fa96031b9d2ce7d6
Base64:
35g=