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