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