C:
char c = '\u7962';
printf("%c\n", c); // Output: 祢
JavaScript:
const char = '\u7962';
console.log(char); // Output: 祢
Java:
char c = '\u7962';
System.out.println(c); // Output: 祢
JSON:
{"text": "\u7962"} // Value: 祢
Python:
char = '\u7962'
print(char) # Output: 祢
Perl:
my $char = "\x{7962}";
print $char; # Output: 祢
PHP:
$char = "\x{7962}";
echo $char; // Output: 祢
Ruby:
char = "\u{7962}"
puts char # Output: 祢
Rust:
let c = '\u{7962}';
println!("{}", c); // Output: 祢
Go:
char := '\u7962'
fmt.Printf("%c\n", char) // Output: 祢
CSS:
/* CSS content property */
.element::before {
content: "\007962"; /* 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%A5%A2
MD5:
951ba8cdd8608cdfcdb3febbdb7fab05
SHA1:
eba58d3b0becda32c318599c322ab3a7e68eb052
Base64:
56Wi