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