C:
char c = '\u7AC3';
printf("%c\n", c); // Output: 竃
JavaScript:
const char = '\u7AC3';
console.log(char); // Output: 竃
Java:
char c = '\u7AC3';
System.out.println(c); // Output: 竃
JSON:
{"text": "\u7AC3"} // Value: 竃
Python:
char = '\u7AC3'
print(char) # Output: 竃
Perl:
my $char = "\x{7AC3}";
print $char; # Output: 竃
PHP:
$char = "\x{7AC3}";
echo $char; // Output: 竃
Ruby:
char = "\u{7AC3}"
puts char # Output: 竃
Rust:
let c = '\u{7AC3}';
println!("{}", c); // Output: 竃
Go:
char := '\u7AC3'
fmt.Printf("%c\n", char) // Output: 竃
CSS:
/* CSS content property */
.element::before {
content: "\007AC3"; /* 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%AB%83
MD5:
808c2046670c8168009a0cb024de2382
SHA1:
f646e9a6af9457cf16f61417595960be53150dbb
Base64:
56uD