C:
char c = '\u8531';
printf("%c\n", c); // Output: 蔱
JavaScript:
const char = '\u8531';
console.log(char); // Output: 蔱
Java:
char c = '\u8531';
System.out.println(c); // Output: 蔱
JSON:
{"text": "\u8531"} // Value: 蔱
Python:
char = '\u8531'
print(char) # Output: 蔱
Perl:
my $char = "\x{8531}";
print $char; # Output: 蔱
PHP:
$char = "\x{8531}";
echo $char; // Output: 蔱
Ruby:
char = "\u{8531}"
puts char # Output: 蔱
Rust:
let c = '\u{8531}';
println!("{}", c); // Output: 蔱
Go:
char := '\u8531'
fmt.Printf("%c\n", char) // Output: 蔱
CSS:
/* CSS content property */
.element::before {
content: "\008531"; /* 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%94%B1
MD5:
3b89918493d7b0ec151138c666fb52cb
SHA1:
60f694bcd669fb6f23c81f1a4c5a23e9e31e9f29
Base64:
6JSx