C:
char c = '\u1829';
printf("%c\n", c); // Output: ᠩ
JavaScript:
const char = '\u1829';
console.log(char); // Output: ᠩ
Java:
char c = '\u1829';
System.out.println(c); // Output: ᠩ
JSON:
{"text": "\u1829"} // Value: ᠩ
Python:
char = '\u1829'
print(char) # Output: ᠩ
Perl:
my $char = "\x{1829}";
print $char; # Output: ᠩ
PHP:
$char = "\x{1829}";
echo $char; // Output: ᠩ
Ruby:
char = "\u{1829}"
puts char # Output: ᠩ
Rust:
let c = '\u{1829}';
println!("{}", c); // Output: ᠩ
Go:
char := '\u1829'
fmt.Printf("%c\n", char) // Output: ᠩ
CSS:
/* CSS content property */
.element::before {
content: "\001829"; /* 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%A9
MD5:
cffd98cbbaaa6690cecdf44be06ecb64
SHA1:
56316b4ef2f44cc6bc21d9846535e02e8b00e2b0
Base64:
4aCp