C:
char c = '\u94CE';
printf("%c\n", c); // Output: 铎
JavaScript:
const char = '\u94CE';
console.log(char); // Output: 铎
Java:
char c = '\u94CE';
System.out.println(c); // Output: 铎
JSON:
{"text": "\u94CE"} // Value: 铎
Python:
char = '\u94CE'
print(char) # Output: 铎
Perl:
my $char = "\x{94CE}";
print $char; # Output: 铎
PHP:
$char = "\x{94CE}";
echo $char; // Output: 铎
Ruby:
char = "\u{94CE}"
puts char # Output: 铎
Rust:
let c = '\u{94CE}';
println!("{}", c); // Output: 铎
Go:
char := '\u94CE'
fmt.Printf("%c\n", char) // Output: 铎
CSS:
/* CSS content property */
.element::before {
content: "\0094CE"; /* 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=%E9%93%8E
MD5:
a0c56cf46d306da0b106113a5b3f3f65
SHA1:
b15743913635747c521cdbf3958d13c8b3dbf416
Base64:
6ZOO