C:
char c = '\u7246';
printf("%c\n", c); // Output: 牆
JavaScript:
const char = '\u7246';
console.log(char); // Output: 牆
Java:
char c = '\u7246';
System.out.println(c); // Output: 牆
JSON:
{"text": "\u7246"} // Value: 牆
Python:
char = '\u7246'
print(char) # Output: 牆
Perl:
my $char = "\x{7246}";
print $char; # Output: 牆
PHP:
$char = "\x{7246}";
echo $char; // Output: 牆
Ruby:
char = "\u{7246}"
puts char # Output: 牆
Rust:
let c = '\u{7246}';
println!("{}", c); // Output: 牆
Go:
char := '\u7246'
fmt.Printf("%c\n", char) // Output: 牆
CSS:
/* CSS content property */
.element::before {
content: "\007246"; /* 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%89%86
MD5:
161b1c60936b3a27ec98e07c14e09693
SHA1:
3d295b2ee53c2f353aa238a8d687a726b8ce88ca
Base64:
54mG