C:
char c = '\u7148';
printf("%c\n", c); // Output: 煈
JavaScript:
const char = '\u7148';
console.log(char); // Output: 煈
Java:
char c = '\u7148';
System.out.println(c); // Output: 煈
JSON:
{"text": "\u7148"} // Value: 煈
Python:
char = '\u7148'
print(char) # Output: 煈
Perl:
my $char = "\x{7148}";
print $char; # Output: 煈
PHP:
$char = "\x{7148}";
echo $char; // Output: 煈
Ruby:
char = "\u{7148}"
puts char # Output: 煈
Rust:
let c = '\u{7148}';
println!("{}", c); // Output: 煈
Go:
char := '\u7148'
fmt.Printf("%c\n", char) // Output: 煈
CSS:
/* CSS content property */
.element::before {
content: "\007148"; /* 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%85%88
MD5:
1b3f44f45d2d5e7552f1bae5b6ef14e6
SHA1:
36ae43b2734bc63c33d45246fdd5eba2a2582d0b
Base64:
54WI