C:
char c = '\u0661';
printf("%c\n", c); // Output: ١
JavaScript:
const char = '\u0661';
console.log(char); // Output: ١
Java:
char c = '\u0661';
System.out.println(c); // Output: ١
JSON:
{"text": "\u0661"} // Value: ١
Python:
char = '\u0661'
print(char) # Output: ١
Perl:
my $char = "\x{0661}";
print $char; # Output: ١
PHP:
$char = "\x{0661}";
echo $char; // Output: ١
Ruby:
char = "\u{0661}"
puts char # Output: ١
Rust:
let c = '\u{661}';
println!("{}", c); // Output: ١
Go:
char := '\u0661'
fmt.Printf("%c\n", char) // Output: ١
CSS:
/* CSS content property */
.element::before {
content: "\000661"; /* 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=%D9%A1
MD5:
bf5245d8b725b5fda3aa2c455d1cc9e8
SHA1:
00e98dbe459de30766ce7de283ad13545ba85a98
Base64:
2aE=