C:
char c = '\u7267';
printf("%c\n", c); // Output: 牧
JavaScript:
const char = '\u7267';
console.log(char); // Output: 牧
Java:
char c = '\u7267';
System.out.println(c); // Output: 牧
JSON:
{"text": "\u7267"} // Value: 牧
Python:
char = '\u7267'
print(char) # Output: 牧
Perl:
my $char = "\x{7267}";
print $char; # Output: 牧
PHP:
$char = "\x{7267}";
echo $char; // Output: 牧
Ruby:
char = "\u{7267}"
puts char # Output: 牧
Rust:
let c = '\u{7267}';
println!("{}", c); // Output: 牧
Go:
char := '\u7267'
fmt.Printf("%c\n", char) // Output: 牧
CSS:
/* CSS content property */
.element::before {
content: "\007267"; /* 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%A7
MD5:
40b68ea15e377e8df47cdd34a451501f
SHA1:
5048c07879e506d2027624c9a4a5894cb54a401f
Base64:
54mn