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