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