C:
char c = '\u0779';
printf("%c\n", c); // Output: ݹ
JavaScript:
const char = '\u0779';
console.log(char); // Output: ݹ
Java:
char c = '\u0779';
System.out.println(c); // Output: ݹ
JSON:
{"text": "\u0779"} // Value: ݹ
Python:
char = '\u0779'
print(char) # Output: ݹ
Perl:
my $char = "\x{0779}";
print $char; # Output: ݹ
PHP:
$char = "\x{0779}";
echo $char; // Output: ݹ
Ruby:
char = "\u{0779}"
puts char # Output: ݹ
Rust:
let c = '\u{779}';
println!("{}", c); // Output: ݹ
Go:
char := '\u0779'
fmt.Printf("%c\n", char) // Output: ݹ
CSS:
/* CSS content property */
.element::before {
content: "\000779"; /* 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%B9
MD5:
df69d678e96e84e9c9d0c95969a1b938
SHA1:
5c225a27ef4dd169e0bbf2060b5a4b142cf63f8a
Base64:
3bk=