C:
char c = '\u7995';
printf("%c\n", c); // Output: 禕
JavaScript:
const char = '\u7995';
console.log(char); // Output: 禕
Java:
char c = '\u7995';
System.out.println(c); // Output: 禕
JSON:
{"text": "\u7995"} // Value: 禕
Python:
char = '\u7995'
print(char) # Output: 禕
Perl:
my $char = "\x{7995}";
print $char; # Output: 禕
PHP:
$char = "\x{7995}";
echo $char; // Output: 禕
Ruby:
char = "\u{7995}"
puts char # Output: 禕
Rust:
let c = '\u{7995}';
println!("{}", c); // Output: 禕
Go:
char := '\u7995'
fmt.Printf("%c\n", char) // Output: 禕
CSS:
/* CSS content property */
.element::before {
content: "\007995"; /* 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%A6%95
MD5:
3b8568ef57163153e2476773af5298cf
SHA1:
2b755aaa75c8062e3eb3b6f449dabdac580d49b0
Base64:
56aV