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