C:
char c = '\u8BEB';
printf("%c\n", c); // Output: 诫
JavaScript:
const char = '\u8BEB';
console.log(char); // Output: 诫
Java:
char c = '\u8BEB';
System.out.println(c); // Output: 诫
JSON:
{"text": "\u8BEB"} // Value: 诫
Python:
char = '\u8BEB'
print(char) # Output: 诫
Perl:
my $char = "\x{8BEB}";
print $char; # Output: 诫
PHP:
$char = "\x{8BEB}";
echo $char; // Output: 诫
Ruby:
char = "\u{8BEB}"
puts char # Output: 诫
Rust:
let c = '\u{8BEB}';
println!("{}", c); // Output: 诫
Go:
char := '\u8BEB'
fmt.Printf("%c\n", char) // Output: 诫
CSS:
/* CSS content property */
.element::before {
content: "\008BEB"; /* 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%AF%AB
MD5:
3814e9935957568b88b7dfb05a498f52
SHA1:
5078bdfc61d8ffcffed0df6aae6104c8e3f5a4ff
Base64:
6K+r