C:
char c = '\u79B5';
printf("%c\n", c); // Output: 禵
JavaScript:
const char = '\u79B5';
console.log(char); // Output: 禵
Java:
char c = '\u79B5';
System.out.println(c); // Output: 禵
JSON:
{"text": "\u79B5"} // Value: 禵
Python:
char = '\u79B5'
print(char) # Output: 禵
Perl:
my $char = "\x{79B5}";
print $char; # Output: 禵
PHP:
$char = "\x{79B5}";
echo $char; // Output: 禵
Ruby:
char = "\u{79B5}"
puts char # Output: 禵
Rust:
let c = '\u{79B5}';
println!("{}", c); // Output: 禵
Go:
char := '\u79B5'
fmt.Printf("%c\n", char) // Output: 禵
CSS:
/* CSS content property */
.element::before {
content: "\0079B5"; /* 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%A6%B5
MD5:
a96f41863859c89af6d9969a3deac21d
SHA1:
82c30af87fc8592f82726c37c932bf6e8e140d3b
Base64:
56a1