C:
char c = '\u1B51';
printf("%c\n", c); // Output: ᭑
JavaScript:
const char = '\u1B51';
console.log(char); // Output: ᭑
Java:
char c = '\u1B51';
System.out.println(c); // Output: ᭑
JSON:
{"text": "\u1B51"} // Value: ᭑
Python:
char = '\u1B51'
print(char) # Output: ᭑
Perl:
my $char = "\x{1B51}";
print $char; # Output: ᭑
PHP:
$char = "\x{1B51}";
echo $char; // Output: ᭑
Ruby:
char = "\u{1B51}"
puts char # Output: ᭑
Rust:
let c = '\u{1B51}';
println!("{}", c); // Output: ᭑
Go:
char := '\u1B51'
fmt.Printf("%c\n", char) // Output: ᭑
CSS:
/* CSS content property */
.element::before {
content: "\001B51"; /* 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=%E1%AD%91
MD5:
e15ddf55c46a490cd7d4a40b79029dc8
SHA1:
4833827e5b7855dd065fa045ed0b8c55ba62f99f
Base64:
4a2R