C:
char c = '\u05BF';
printf("%c\n", c); // Output: ֿ
JavaScript:
const char = '\u05BF';
console.log(char); // Output: ֿ
Java:
char c = '\u05BF';
System.out.println(c); // Output: ֿ
JSON:
{"text": "\u05BF"} // Value: ֿ
Python:
char = '\u05BF'
print(char) # Output: ֿ
Perl:
my $char = "\x{05BF}";
print $char; # Output: ֿ
PHP:
$char = "\x{05BF}";
echo $char; // Output: ֿ
Ruby:
char = "\u{05BF}"
puts char # Output: ֿ
Rust:
let c = '\u{5BF}';
println!("{}", c); // Output: ֿ
Go:
char := '\u05BF'
fmt.Printf("%c\n", char) // Output: ֿ
CSS:
/* CSS content property */
.element::before {
content: "\0005BF"; /* 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=%D6%BF
MD5:
ec4ac0d98422d65a6aeb882a6203cbce
SHA1:
a769055583f365327beb68f769ab0383c49837a7
Base64:
1r8=