C:
char c = '\u6812';
printf("%c\n", c); // Output: 栒
JavaScript:
const char = '\u6812';
console.log(char); // Output: 栒
Java:
char c = '\u6812';
System.out.println(c); // Output: 栒
JSON:
{"text": "\u6812"} // Value: 栒
Python:
char = '\u6812'
print(char) # Output: 栒
Perl:
my $char = "\x{6812}";
print $char; # Output: 栒
PHP:
$char = "\x{6812}";
echo $char; // Output: 栒
Ruby:
char = "\u{6812}"
puts char # Output: 栒
Rust:
let c = '\u{6812}';
println!("{}", c); // Output: 栒
Go:
char := '\u6812'
fmt.Printf("%c\n", char) // Output: 栒
CSS:
/* CSS content property */
.element::before {
content: "\006812"; /* 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=%E6%A0%92
MD5:
85db08cfe2344bc951c86116d53809bd
SHA1:
006524623dc80b47fa260d52b69a2a00586a367f
Base64:
5qCS