C:
char c = '\u9982';
printf("%c\n", c); // Output: 馂
JavaScript:
const char = '\u9982';
console.log(char); // Output: 馂
Java:
char c = '\u9982';
System.out.println(c); // Output: 馂
JSON:
{"text": "\u9982"} // Value: 馂
Python:
char = '\u9982'
print(char) # Output: 馂
Perl:
my $char = "\x{9982}";
print $char; # Output: 馂
PHP:
$char = "\x{9982}";
echo $char; // Output: 馂
Ruby:
char = "\u{9982}"
puts char # Output: 馂
Rust:
let c = '\u{9982}';
println!("{}", c); // Output: 馂
Go:
char := '\u9982'
fmt.Printf("%c\n", char) // Output: 馂
CSS:
/* CSS content property */
.element::before {
content: "\009982"; /* 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%82
MD5:
7e167846edbe6617cf832d041d48347f
SHA1:
305cd6a13871c5f23f147d4b4c99cb0ece9f3ef4
Base64:
6aaC