C:
char c = '\u0FB2';
printf("%c\n", c); // Output: ྲ
JavaScript:
const char = '\u0FB2';
console.log(char); // Output: ྲ
Java:
char c = '\u0FB2';
System.out.println(c); // Output: ྲ
JSON:
{"text": "\u0FB2"} // Value: ྲ
Python:
char = '\u0FB2'
print(char) # Output: ྲ
Perl:
my $char = "\x{0FB2}";
print $char; # Output: ྲ
PHP:
$char = "\x{0FB2}";
echo $char; // Output: ྲ
Ruby:
char = "\u{0FB2}"
puts char # Output: ྲ
Rust:
let c = '\u{FB2}';
println!("{}", c); // Output: ྲ
Go:
char := '\u0FB2'
fmt.Printf("%c\n", char) // Output: ྲ
CSS:
/* CSS content property */
.element::before {
content: "\000FB2"; /* 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=%E0%BE%B2
MD5:
5068e4a2aec314ab19c76f63e564edb0
SHA1:
a65ebf37230cb2962ced1107718a825bb6e95cbb
Base64:
4L6y