C:
char c = '\u8DAB';
printf("%c\n", c); // Output: 趫
JavaScript:
const char = '\u8DAB';
console.log(char); // Output: 趫
Java:
char c = '\u8DAB';
System.out.println(c); // Output: 趫
JSON:
{"text": "\u8DAB"} // Value: 趫
Python:
char = '\u8DAB'
print(char) # Output: 趫
Perl:
my $char = "\x{8DAB}";
print $char; # Output: 趫
PHP:
$char = "\x{8DAB}";
echo $char; // Output: 趫
Ruby:
char = "\u{8DAB}"
puts char # Output: 趫
Rust:
let c = '\u{8DAB}';
println!("{}", c); // Output: 趫
Go:
char := '\u8DAB'
fmt.Printf("%c\n", char) // Output: 趫
CSS:
/* CSS content property */
.element::before {
content: "\008DAB"; /* 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=%E8%B6%AB
MD5:
0d8e748f1aaba75835076725d3989a5a
SHA1:
d3475b865ed5febb4709f48e169b81ee247aed10
Base64:
6Lar