C:
char c = '\u99BE';
printf("%c\n", c); // Output: 馾
JavaScript:
const char = '\u99BE';
console.log(char); // Output: 馾
Java:
char c = '\u99BE';
System.out.println(c); // Output: 馾
JSON:
{"text": "\u99BE"} // Value: 馾
Python:
char = '\u99BE'
print(char) # Output: 馾
Perl:
my $char = "\x{99BE}";
print $char; # Output: 馾
PHP:
$char = "\x{99BE}";
echo $char; // Output: 馾
Ruby:
char = "\u{99BE}"
puts char # Output: 馾
Rust:
let c = '\u{99BE}';
println!("{}", c); // Output: 馾
Go:
char := '\u99BE'
fmt.Printf("%c\n", char) // Output: 馾
CSS:
/* CSS content property */
.element::before {
content: "\0099BE"; /* 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=%E9%A6%BE
MD5:
cce00762c09664ec0d5352ef1b50563e
SHA1:
28c60a0b82d60247ec56177869ca2bf6d648cdf4
Base64:
6aa+