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