C:
char c = '\u7129';
printf("%c\n", c); // Output: 焩
JavaScript:
const char = '\u7129';
console.log(char); // Output: 焩
Java:
char c = '\u7129';
System.out.println(c); // Output: 焩
JSON:
{"text": "\u7129"} // Value: 焩
Python:
char = '\u7129'
print(char) # Output: 焩
Perl:
my $char = "\x{7129}";
print $char; # Output: 焩
PHP:
$char = "\x{7129}";
echo $char; // Output: 焩
Ruby:
char = "\u{7129}"
puts char # Output: 焩
Rust:
let c = '\u{7129}';
println!("{}", c); // Output: 焩
Go:
char := '\u7129'
fmt.Printf("%c\n", char) // Output: 焩
CSS:
/* CSS content property */
.element::before {
content: "\007129"; /* 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%84%A9
MD5:
36cfa42d69f42c48631c2808cdd78e3e
SHA1:
4e77993ebc139298e3037c3daf3cbe51baf15b02
Base64:
54Sp