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