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