C:
char c = '\u0698';
printf("%c\n", c); // Output: ژ
JavaScript:
const char = '\u0698';
console.log(char); // Output: ژ
Java:
char c = '\u0698';
System.out.println(c); // Output: ژ
JSON:
{"text": "\u0698"} // Value: ژ
Python:
char = '\u0698'
print(char) # Output: ژ
Perl:
my $char = "\x{0698}";
print $char; # Output: ژ
PHP:
$char = "\x{0698}";
echo $char; // Output: ژ
Ruby:
char = "\u{0698}"
puts char # Output: ژ
Rust:
let c = '\u{698}';
println!("{}", c); // Output: ژ
Go:
char := '\u0698'
fmt.Printf("%c\n", char) // Output: ژ
CSS:
/* CSS content property */
.element::before {
content: "\000698"; /* 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=%DA%98
MD5:
0435ec596d0649fe928dc69ca0b83fbb
SHA1:
d76faa5c851c8addd7bc649f06e123a16a37a94c
Base64:
2pg=