C:
char c = '\u0662';
printf("%c\n", c); // Output: ٢
JavaScript:
const char = '\u0662';
console.log(char); // Output: ٢
Java:
char c = '\u0662';
System.out.println(c); // Output: ٢
JSON:
{"text": "\u0662"} // Value: ٢
Python:
char = '\u0662'
print(char) # Output: ٢
Perl:
my $char = "\x{0662}";
print $char; # Output: ٢
PHP:
$char = "\x{0662}";
echo $char; // Output: ٢
Ruby:
char = "\u{0662}"
puts char # Output: ٢
Rust:
let c = '\u{662}';
println!("{}", c); // Output: ٢
Go:
char := '\u0662'
fmt.Printf("%c\n", char) // Output: ٢
CSS:
/* CSS content property */
.element::before {
content: "\000662"; /* 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%A2
MD5:
a147e3c49a3d912951056eb97ef30176
SHA1:
61d815708f0965f7a5e4467d99f8946c99ee97a4
Base64:
2aI=