C:
char c = '\u9F45';
printf("%c\n", c); // Output: 齅
JavaScript:
const char = '\u9F45';
console.log(char); // Output: 齅
Java:
char c = '\u9F45';
System.out.println(c); // Output: 齅
JSON:
{"text": "\u9F45"} // Value: 齅
Python:
char = '\u9F45'
print(char) # Output: 齅
Perl:
my $char = "\x{9F45}";
print $char; # Output: 齅
PHP:
$char = "\x{9F45}";
echo $char; // Output: 齅
Ruby:
char = "\u{9F45}"
puts char # Output: 齅
Rust:
let c = '\u{9F45}';
println!("{}", c); // Output: 齅
Go:
char := '\u9F45'
fmt.Printf("%c\n", char) // Output: 齅
CSS:
/* CSS content property */
.element::before {
content: "\009F45"; /* 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%BD%85
MD5:
2604dce5ce28ad6563ba80110397f64a
SHA1:
dbc7d12c2e8c1c2911043e1147f14648e405f4dc
Base64:
6b2F