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