C:
char c = '\u7849';
printf("%c\n", c); // Output: 硉
JavaScript:
const char = '\u7849';
console.log(char); // Output: 硉
Java:
char c = '\u7849';
System.out.println(c); // Output: 硉
JSON:
{"text": "\u7849"} // Value: 硉
Python:
char = '\u7849'
print(char) # Output: 硉
Perl:
my $char = "\x{7849}";
print $char; # Output: 硉
PHP:
$char = "\x{7849}";
echo $char; // Output: 硉
Ruby:
char = "\u{7849}"
puts char # Output: 硉
Rust:
let c = '\u{7849}';
println!("{}", c); // Output: 硉
Go:
char := '\u7849'
fmt.Printf("%c\n", char) // Output: 硉
CSS:
/* CSS content property */
.element::before {
content: "\007849"; /* 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%A1%89
MD5:
867a59e59d1489a5fb03204e287f5f30
SHA1:
5ec8986a1ee50f146a1a26fa336b42e712229e66
Base64:
56GJ