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