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