C:
char c = '\u7243';
printf("%c\n", c); // Output: 牃
JavaScript:
const char = '\u7243';
console.log(char); // Output: 牃
Java:
char c = '\u7243';
System.out.println(c); // Output: 牃
JSON:
{"text": "\u7243"} // Value: 牃
Python:
char = '\u7243'
print(char) # Output: 牃
Perl:
my $char = "\x{7243}";
print $char; # Output: 牃
PHP:
$char = "\x{7243}";
echo $char; // Output: 牃
Ruby:
char = "\u{7243}"
puts char # Output: 牃
Rust:
let c = '\u{7243}';
println!("{}", c); // Output: 牃
Go:
char := '\u7243'
fmt.Printf("%c\n", char) // Output: 牃
CSS:
/* CSS content property */
.element::before {
content: "\007243"; /* 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%83
MD5:
9872a2399f6831665cd00421fe5a0539
SHA1:
06e989b731088177ae04fa2d5b6622877d3c348a
Base64:
54mD