C:
char c = '\u7141';
printf("%c\n", c); // Output: 煁
JavaScript:
const char = '\u7141';
console.log(char); // Output: 煁
Java:
char c = '\u7141';
System.out.println(c); // Output: 煁
JSON:
{"text": "\u7141"} // Value: 煁
Python:
char = '\u7141'
print(char) # Output: 煁
Perl:
my $char = "\x{7141}";
print $char; # Output: 煁
PHP:
$char = "\x{7141}";
echo $char; // Output: 煁
Ruby:
char = "\u{7141}"
puts char # Output: 煁
Rust:
let c = '\u{7141}';
println!("{}", c); // Output: 煁
Go:
char := '\u7141'
fmt.Printf("%c\n", char) // Output: 煁
CSS:
/* CSS content property */
.element::before {
content: "\007141"; /* 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%81
MD5:
25bf405b7b0f2ca57efa5fba48e1430e
SHA1:
7cbe8826ff8b56f345a14bc6da8aa4a0f3a34f93
Base64:
54WB