C:
char c = '\u7984';
printf("%c\n", c); // Output: 禄
JavaScript:
const char = '\u7984';
console.log(char); // Output: 禄
Java:
char c = '\u7984';
System.out.println(c); // Output: 禄
JSON:
{"text": "\u7984"} // Value: 禄
Python:
char = '\u7984'
print(char) # Output: 禄
Perl:
my $char = "\x{7984}";
print $char; # Output: 禄
PHP:
$char = "\x{7984}";
echo $char; // Output: 禄
Ruby:
char = "\u{7984}"
puts char # Output: 禄
Rust:
let c = '\u{7984}';
println!("{}", c); // Output: 禄
Go:
char := '\u7984'
fmt.Printf("%c\n", char) // Output: 禄
CSS:
/* CSS content property */
.element::before {
content: "\007984"; /* 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%84
MD5:
4691816e64b160c8e4a06c59c19f074b
SHA1:
6d5986294083439264fe39ccc438609876260667
Base64:
56aE