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