C:
char c = '\u01A1';
printf("%c\n", c); // Output: ơ
JavaScript:
const char = '\u01A1';
console.log(char); // Output: ơ
Java:
char c = '\u01A1';
System.out.println(c); // Output: ơ
JSON:
{"text": "\u01A1"} // Value: ơ
Python:
char = '\u01A1'
print(char) # Output: ơ
Perl:
my $char = "\x{01A1}";
print $char; # Output: ơ
PHP:
$char = "\x{01A1}";
echo $char; // Output: ơ
Ruby:
char = "\u{01A1}"
puts char # Output: ơ
Rust:
let c = '\u{1A1}';
println!("{}", c); // Output: ơ
Go:
char := '\u01A1'
fmt.Printf("%c\n", char) // Output: ơ
CSS:
/* CSS content property */
.element::before {
content: "\0001A1"; /* 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=%C6%A1
MD5:
2b0e71047c38fcce4f7801142440ecb6
SHA1:
ec1474a28f5da78a006c2a098734fd38da6e5b97
Base64:
xqE=