C:
char c = '\u9B24';
printf("%c\n", c); // Output: 鬤
JavaScript:
const char = '\u9B24';
console.log(char); // Output: 鬤
Java:
char c = '\u9B24';
System.out.println(c); // Output: 鬤
JSON:
{"text": "\u9B24"} // Value: 鬤
Python:
char = '\u9B24'
print(char) # Output: 鬤
Perl:
my $char = "\x{9B24}";
print $char; # Output: 鬤
PHP:
$char = "\x{9B24}";
echo $char; // Output: 鬤
Ruby:
char = "\u{9B24}"
puts char # Output: 鬤
Rust:
let c = '\u{9B24}';
println!("{}", c); // Output: 鬤
Go:
char := '\u9B24'
fmt.Printf("%c\n", char) // Output: 鬤
CSS:
/* CSS content property */
.element::before {
content: "\009B24"; /* 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%AC%A4
MD5:
b749887593efcd659ade66f842831209
SHA1:
8c03b05ed81b592f9b08e83062f41ab4e78d132a
Base64:
6ayk