C:
char c = '\u7255';
printf("%c\n", c); // Output: 牕
JavaScript:
const char = '\u7255';
console.log(char); // Output: 牕
Java:
char c = '\u7255';
System.out.println(c); // Output: 牕
JSON:
{"text": "\u7255"} // Value: 牕
Python:
char = '\u7255'
print(char) # Output: 牕
Perl:
my $char = "\x{7255}";
print $char; # Output: 牕
PHP:
$char = "\x{7255}";
echo $char; // Output: 牕
Ruby:
char = "\u{7255}"
puts char # Output: 牕
Rust:
let c = '\u{7255}';
println!("{}", c); // Output: 牕
Go:
char := '\u7255'
fmt.Printf("%c\n", char) // Output: 牕
CSS:
/* CSS content property */
.element::before {
content: "\007255"; /* 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%95
MD5:
3f9d3ebcd99ddf6f478d0b98e568e4b9
SHA1:
6be8e4dc5cd82f06a4256b88649ff8d32f82cdb9
Base64:
54mV