C:
char c = '\u06F4';
printf("%c\n", c); // Output: ۴
JavaScript:
const char = '\u06F4';
console.log(char); // Output: ۴
Java:
char c = '\u06F4';
System.out.println(c); // Output: ۴
JSON:
{"text": "\u06F4"} // Value: ۴
Python:
char = '\u06F4'
print(char) # Output: ۴
Perl:
my $char = "\x{06F4}";
print $char; # Output: ۴
PHP:
$char = "\x{06F4}";
echo $char; // Output: ۴
Ruby:
char = "\u{06F4}"
puts char # Output: ۴
Rust:
let c = '\u{6F4}';
println!("{}", c); // Output: ۴
Go:
char := '\u06F4'
fmt.Printf("%c\n", char) // Output: ۴
CSS:
/* CSS content property */
.element::before {
content: "\0006F4"; /* 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=%DB%B4
MD5:
4d6c3c0aead29bc53362dabf4ee368df
SHA1:
ab3b868513fbeee64d3e80deb5a5306a2ce09b4b
Base64:
27Q=