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