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