C:
char c = '\u8D69';
printf("%c\n", c); // Output: 赩
JavaScript:
const char = '\u8D69';
console.log(char); // Output: 赩
Java:
char c = '\u8D69';
System.out.println(c); // Output: 赩
JSON:
{"text": "\u8D69"} // Value: 赩
Python:
char = '\u8D69'
print(char) # Output: 赩
Perl:
my $char = "\x{8D69}";
print $char; # Output: 赩
PHP:
$char = "\x{8D69}";
echo $char; // Output: 赩
Ruby:
char = "\u{8D69}"
puts char # Output: 赩
Rust:
let c = '\u{8D69}';
println!("{}", c); // Output: 赩
Go:
char := '\u8D69'
fmt.Printf("%c\n", char) // Output: 赩
CSS:
/* CSS content property */
.element::before {
content: "\008D69"; /* 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%B5%A9
MD5:
5daa31a2b293422f1d99482bc7245f9f
SHA1:
f5fbabfb02abeda266c47de494bb74b1730996d7
Base64:
6LWp