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