C:
char c = '\u7268';
printf("%c\n", c); // Output: 牨
JavaScript:
const char = '\u7268';
console.log(char); // Output: 牨
Java:
char c = '\u7268';
System.out.println(c); // Output: 牨
JSON:
{"text": "\u7268"} // Value: 牨
Python:
char = '\u7268'
print(char) # Output: 牨
Perl:
my $char = "\x{7268}";
print $char; # Output: 牨
PHP:
$char = "\x{7268}";
echo $char; // Output: 牨
Ruby:
char = "\u{7268}"
puts char # Output: 牨
Rust:
let c = '\u{7268}';
println!("{}", c); // Output: 牨
Go:
char := '\u7268'
fmt.Printf("%c\n", char) // Output: 牨
CSS:
/* CSS content property */
.element::before {
content: "\007268"; /* 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%A8
MD5:
e0b4896d9db82e3482a35da3bb8ed947
SHA1:
75d61ff2e5d3f0720d0423a7b678c9baaa56cc55
Base64:
54mo