C:
char c = '\u1B58';
printf("%c\n", c); // Output: ᭘
JavaScript:
const char = '\u1B58';
console.log(char); // Output: ᭘
Java:
char c = '\u1B58';
System.out.println(c); // Output: ᭘
JSON:
{"text": "\u1B58"} // Value: ᭘
Python:
char = '\u1B58'
print(char) # Output: ᭘
Perl:
my $char = "\x{1B58}";
print $char; # Output: ᭘
PHP:
$char = "\x{1B58}";
echo $char; // Output: ᭘
Ruby:
char = "\u{1B58}"
puts char # Output: ᭘
Rust:
let c = '\u{1B58}';
println!("{}", c); // Output: ᭘
Go:
char := '\u1B58'
fmt.Printf("%c\n", char) // Output: ᭘
CSS:
/* CSS content property */
.element::before {
content: "\001B58"; /* 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%98
MD5:
29feae2fadc15fcb1eca9b57c320c4fb
SHA1:
aec7620361805f5c2f6009b9795371387bf9089b
Base64:
4a2Y