C:
char c = '\u0778';
printf("%c\n", c); // Output: ݸ
JavaScript:
const char = '\u0778';
console.log(char); // Output: ݸ
Java:
char c = '\u0778';
System.out.println(c); // Output: ݸ
JSON:
{"text": "\u0778"} // Value: ݸ
Python:
char = '\u0778'
print(char) # Output: ݸ
Perl:
my $char = "\x{0778}";
print $char; # Output: ݸ
PHP:
$char = "\x{0778}";
echo $char; // Output: ݸ
Ruby:
char = "\u{0778}"
puts char # Output: ݸ
Rust:
let c = '\u{778}';
println!("{}", c); // Output: ݸ
Go:
char := '\u0778'
fmt.Printf("%c\n", char) // Output: ݸ
CSS:
/* CSS content property */
.element::before {
content: "\000778"; /* 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%B8
MD5:
189fc2dd42e313c5995ea5a0133923a7
SHA1:
69a34771d9c9f489a98fc506214f61c38b9dcf56
Base64:
3bg=