C:
char c = '\u8256';
printf("%c\n", c); // Output: 艖
JavaScript:
const char = '\u8256';
console.log(char); // Output: 艖
Java:
char c = '\u8256';
System.out.println(c); // Output: 艖
JSON:
{"text": "\u8256"} // Value: 艖
Python:
char = '\u8256'
print(char) # Output: 艖
Perl:
my $char = "\x{8256}";
print $char; # Output: 艖
PHP:
$char = "\x{8256}";
echo $char; // Output: 艖
Ruby:
char = "\u{8256}"
puts char # Output: 艖
Rust:
let c = '\u{8256}';
println!("{}", c); // Output: 艖
Go:
char := '\u8256'
fmt.Printf("%c\n", char) // Output: 艖
CSS:
/* CSS content property */
.element::before {
content: "\008256"; /* 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%89%96
MD5:
5575573206167c573ff6ba54e0c20521
SHA1:
acf29c6f1cde2e48614a7e52b083511d4587d822
Base64:
6ImW