C:
char c = '\u1372';
printf("%c\n", c); // Output: ፲
JavaScript:
const char = '\u1372';
console.log(char); // Output: ፲
Java:
char c = '\u1372';
System.out.println(c); // Output: ፲
JSON:
{"text": "\u1372"} // Value: ፲
Python:
char = '\u1372'
print(char) # Output: ፲
Perl:
my $char = "\x{1372}";
print $char; # Output: ፲
PHP:
$char = "\x{1372}";
echo $char; // Output: ፲
Ruby:
char = "\u{1372}"
puts char # Output: ፲
Rust:
let c = '\u{1372}';
println!("{}", c); // Output: ፲
Go:
char := '\u1372'
fmt.Printf("%c\n", char) // Output: ፲
CSS:
/* CSS content property */
.element::before {
content: "\001372"; /* 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%8D%B2
MD5:
9a5c863017a00673497eaecb8c8cbb87
SHA1:
12663786ab3a9bae2c556e84c367f494e4ac5a3f
Base64:
4Y2y