C:
char c = '\u0BED';
printf("%c\n", c); // Output: ௭
JavaScript:
const char = '\u0BED';
console.log(char); // Output: ௭
Java:
char c = '\u0BED';
System.out.println(c); // Output: ௭
JSON:
{"text": "\u0BED"} // Value: ௭
Python:
char = '\u0BED'
print(char) # Output: ௭
Perl:
my $char = "\x{0BED}";
print $char; # Output: ௭
PHP:
$char = "\x{0BED}";
echo $char; // Output: ௭
Ruby:
char = "\u{0BED}"
puts char # Output: ௭
Rust:
let c = '\u{BED}';
println!("{}", c); // Output: ௭
Go:
char := '\u0BED'
fmt.Printf("%c\n", char) // Output: ௭
CSS:
/* CSS content property */
.element::before {
content: "\000BED"; /* 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=%E0%AF%AD
MD5:
2f5de5b4ea4181a3b267ad97f3921b87
SHA1:
20e6e64fb2ac5df96d4d98390569e4e31a8d5db6
Base64:
4K+t