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