C:
char c = '\u8B18';
printf("%c\n", c); // Output: 謘
JavaScript:
const char = '\u8B18';
console.log(char); // Output: 謘
Java:
char c = '\u8B18';
System.out.println(c); // Output: 謘
JSON:
{"text": "\u8B18"} // Value: 謘
Python:
char = '\u8B18'
print(char) # Output: 謘
Perl:
my $char = "\x{8B18}";
print $char; # Output: 謘
PHP:
$char = "\x{8B18}";
echo $char; // Output: 謘
Ruby:
char = "\u{8B18}"
puts char # Output: 謘
Rust:
let c = '\u{8B18}';
println!("{}", c); // Output: 謘
Go:
char := '\u8B18'
fmt.Printf("%c\n", char) // Output: 謘
CSS:
/* CSS content property */
.element::before {
content: "\008B18"; /* 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%AC%98
MD5:
cc0724fd41e0008d18309534460aaeb7
SHA1:
9b0d5f35ddb142704456ed5821578577d375fcd2
Base64:
6KyY