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