C:
char c = '\u7893';
printf("%c\n", c); // Output: 碓
JavaScript:
const char = '\u7893';
console.log(char); // Output: 碓
Java:
char c = '\u7893';
System.out.println(c); // Output: 碓
JSON:
{"text": "\u7893"} // Value: 碓
Python:
char = '\u7893'
print(char) # Output: 碓
Perl:
my $char = "\x{7893}";
print $char; # Output: 碓
PHP:
$char = "\x{7893}";
echo $char; // Output: 碓
Ruby:
char = "\u{7893}"
puts char # Output: 碓
Rust:
let c = '\u{7893}';
println!("{}", c); // Output: 碓
Go:
char := '\u7893'
fmt.Printf("%c\n", char) // Output: 碓
CSS:
/* CSS content property */
.element::before {
content: "\007893"; /* 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=%E7%A2%93
MD5:
dbf05b54d0b04d4fca09382a5bb1711e
SHA1:
575efb7de0e3367428a3abeb55c3a6296df71487
Base64:
56KT