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