C:
char c = '\u182C';
printf("%c\n", c); // Output: ᠬ
JavaScript:
const char = '\u182C';
console.log(char); // Output: ᠬ
Java:
char c = '\u182C';
System.out.println(c); // Output: ᠬ
JSON:
{"text": "\u182C"} // Value: ᠬ
Python:
char = '\u182C'
print(char) # Output: ᠬ
Perl:
my $char = "\x{182C}";
print $char; # Output: ᠬ
PHP:
$char = "\x{182C}";
echo $char; // Output: ᠬ
Ruby:
char = "\u{182C}"
puts char # Output: ᠬ
Rust:
let c = '\u{182C}';
println!("{}", c); // Output: ᠬ
Go:
char := '\u182C'
fmt.Printf("%c\n", char) // Output: ᠬ
CSS:
/* CSS content property */
.element::before {
content: "\00182C"; /* 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%AC
MD5:
6d99e8fbf4371e593a8cdb3b610291fc
SHA1:
2955a4d9a2c9d224647d6247ff9a9328c7e5641d
Base64:
4aCs