C:
char c = '\u1824';
printf("%c\n", c); // Output: ᠤ
JavaScript:
const char = '\u1824';
console.log(char); // Output: ᠤ
Java:
char c = '\u1824';
System.out.println(c); // Output: ᠤ
JSON:
{"text": "\u1824"} // Value: ᠤ
Python:
char = '\u1824'
print(char) # Output: ᠤ
Perl:
my $char = "\x{1824}";
print $char; # Output: ᠤ
PHP:
$char = "\x{1824}";
echo $char; // Output: ᠤ
Ruby:
char = "\u{1824}"
puts char # Output: ᠤ
Rust:
let c = '\u{1824}';
println!("{}", c); // Output: ᠤ
Go:
char := '\u1824'
fmt.Printf("%c\n", char) // Output: ᠤ
CSS:
/* CSS content property */
.element::before {
content: "\001824"; /* 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%A0%A4
MD5:
753ffacb08efbe43df1135c9f2edd3ec
SHA1:
1bf12ef6e5f3dacd03bab923b929de67c7a83317
Base64:
4aCk