C:
char c = '\u8918';
printf("%c\n", c); // Output: 褘
JavaScript:
const char = '\u8918';
console.log(char); // Output: 褘
Java:
char c = '\u8918';
System.out.println(c); // Output: 褘
JSON:
{"text": "\u8918"} // Value: 褘
Python:
char = '\u8918'
print(char) # Output: 褘
Perl:
my $char = "\x{8918}";
print $char; # Output: 褘
PHP:
$char = "\x{8918}";
echo $char; // Output: 褘
Ruby:
char = "\u{8918}"
puts char # Output: 褘
Rust:
let c = '\u{8918}';
println!("{}", c); // Output: 褘
Go:
char := '\u8918'
fmt.Printf("%c\n", char) // Output: 褘
CSS:
/* CSS content property */
.element::before {
content: "\008918"; /* 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%A4%98
MD5:
213f27b280f880b3da84d314d5ad3922
SHA1:
3138c5f78e96cac9414b587a617db4358d0c4077
Base64:
6KSY