C:
char c = '\u6819';
printf("%c\n", c); // Output: 栙
JavaScript:
const char = '\u6819';
console.log(char); // Output: 栙
Java:
char c = '\u6819';
System.out.println(c); // Output: 栙
JSON:
{"text": "\u6819"} // Value: 栙
Python:
char = '\u6819'
print(char) # Output: 栙
Perl:
my $char = "\x{6819}";
print $char; # Output: 栙
PHP:
$char = "\x{6819}";
echo $char; // Output: 栙
Ruby:
char = "\u{6819}"
puts char # Output: 栙
Rust:
let c = '\u{6819}';
println!("{}", c); // Output: 栙
Go:
char := '\u6819'
fmt.Printf("%c\n", char) // Output: 栙
CSS:
/* CSS content property */
.element::before {
content: "\006819"; /* 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%99
MD5:
51797bca33a1cf89c70aaeab9cdc4399
SHA1:
6ad7c14311074dc3957b0c193a3d171f79f0c3d7
Base64:
5qCZ