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