C:
char c = '\u7254';
printf("%c\n", c); // Output: 牔
JavaScript:
const char = '\u7254';
console.log(char); // Output: 牔
Java:
char c = '\u7254';
System.out.println(c); // Output: 牔
JSON:
{"text": "\u7254"} // Value: 牔
Python:
char = '\u7254'
print(char) # Output: 牔
Perl:
my $char = "\x{7254}";
print $char; # Output: 牔
PHP:
$char = "\x{7254}";
echo $char; // Output: 牔
Ruby:
char = "\u{7254}"
puts char # Output: 牔
Rust:
let c = '\u{7254}';
println!("{}", c); // Output: 牔
Go:
char := '\u7254'
fmt.Printf("%c\n", char) // Output: 牔
CSS:
/* CSS content property */
.element::before {
content: "\007254"; /* 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%94
MD5:
165bd31c73d8ea41947a8705be26ee08
SHA1:
58c4083dca84807bd53c897f7e22544355d3132e
Base64:
54mU