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