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