C:
char c = '\u1930';
printf("%c\n", c); // Output: ᤰ
JavaScript:
const char = '\u1930';
console.log(char); // Output: ᤰ
Java:
char c = '\u1930';
System.out.println(c); // Output: ᤰ
JSON:
{"text": "\u1930"} // Value: ᤰ
Python:
char = '\u1930'
print(char) # Output: ᤰ
Perl:
my $char = "\x{1930}";
print $char; # Output: ᤰ
PHP:
$char = "\x{1930}";
echo $char; // Output: ᤰ
Ruby:
char = "\u{1930}"
puts char # Output: ᤰ
Rust:
let c = '\u{1930}';
println!("{}", c); // Output: ᤰ
Go:
char := '\u1930'
fmt.Printf("%c\n", char) // Output: ᤰ
CSS:
/* CSS content property */
.element::before {
content: "\001930"; /* 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%A4%B0
MD5:
ea61372ef50fff5ac924f66180b0abd8
SHA1:
cab0bcb11238264fed0354e9df40e628ec612b28
Base64:
4aSw