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