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