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