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