C:
char c = '\u7265';
printf("%c\n", c); // Output: 牥
JavaScript:
const char = '\u7265';
console.log(char); // Output: 牥
Java:
char c = '\u7265';
System.out.println(c); // Output: 牥
JSON:
{"text": "\u7265"} // Value: 牥
Python:
char = '\u7265'
print(char) # Output: 牥
Perl:
my $char = "\x{7265}";
print $char; # Output: 牥
PHP:
$char = "\x{7265}";
echo $char; // Output: 牥
Ruby:
char = "\u{7265}"
puts char # Output: 牥
Rust:
let c = '\u{7265}';
println!("{}", c); // Output: 牥
Go:
char := '\u7265'
fmt.Printf("%c\n", char) // Output: 牥
CSS:
/* CSS content property */
.element::before {
content: "\007265"; /* 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%A5
MD5:
219a50cda18ed6f71aa1422b682ddf48
SHA1:
321c1eab53755ec9a8964cc581207c2ba0d81bab
Base64:
54ml