C:
char c = '\u04BF';
printf("%c\n", c); // Output: ҿ
JavaScript:
const char = '\u04BF';
console.log(char); // Output: ҿ
Java:
char c = '\u04BF';
System.out.println(c); // Output: ҿ
JSON:
{"text": "\u04BF"} // Value: ҿ
Python:
char = '\u04BF'
print(char) # Output: ҿ
Perl:
my $char = "\x{04BF}";
print $char; # Output: ҿ
PHP:
$char = "\x{04BF}";
echo $char; // Output: ҿ
Ruby:
char = "\u{04BF}"
puts char # Output: ҿ
Rust:
let c = '\u{4BF}';
println!("{}", c); // Output: ҿ
Go:
char := '\u04BF'
fmt.Printf("%c\n", char) // Output: ҿ
CSS:
/* CSS content property */
.element::before {
content: "\0004BF"; /* 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=%D2%BF
MD5:
e7beb051b3a74c6b437526188167b963
SHA1:
c743e3d42324fe3ef47b3f9b7670dd68257e8708
Base64:
0r8=