C:
char c = '\u1828';
printf("%c\n", c); // Output: ᠨ
JavaScript:
const char = '\u1828';
console.log(char); // Output: ᠨ
Java:
char c = '\u1828';
System.out.println(c); // Output: ᠨ
JSON:
{"text": "\u1828"} // Value: ᠨ
Python:
char = '\u1828'
print(char) # Output: ᠨ
Perl:
my $char = "\x{1828}";
print $char; # Output: ᠨ
PHP:
$char = "\x{1828}";
echo $char; // Output: ᠨ
Ruby:
char = "\u{1828}"
puts char # Output: ᠨ
Rust:
let c = '\u{1828}';
println!("{}", c); // Output: ᠨ
Go:
char := '\u1828'
fmt.Printf("%c\n", char) // Output: ᠨ
CSS:
/* CSS content property */
.element::before {
content: "\001828"; /* 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%A8
MD5:
5b61b19a9af176a3228db611d8921f33
SHA1:
0db76fb5fd1b4c1eb461e9f5b1b780a126bd9b12
Base64:
4aCo