C:
char c = '\u70A4';
printf("%c\n", c); // Output: 炤
JavaScript:
const char = '\u70A4';
console.log(char); // Output: 炤
Java:
char c = '\u70A4';
System.out.println(c); // Output: 炤
JSON:
{"text": "\u70A4"} // Value: 炤
Python:
char = '\u70A4'
print(char) # Output: 炤
Perl:
my $char = "\x{70A4}";
print $char; # Output: 炤
PHP:
$char = "\x{70A4}";
echo $char; // Output: 炤
Ruby:
char = "\u{70A4}"
puts char # Output: 炤
Rust:
let c = '\u{70A4}';
println!("{}", c); // Output: 炤
Go:
char := '\u70A4'
fmt.Printf("%c\n", char) // Output: 炤
CSS:
/* CSS content property */
.element::before {
content: "\0070A4"; /* 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%82%A4
MD5:
fc8b8c355be00b12a47c6460ab599a73
SHA1:
c242624ad54026a9e257f60300e8273d89f02c78
Base64:
54Kk