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