C:
char c = '\u6824';
printf("%c\n", c); // Output: 栤
JavaScript:
const char = '\u6824';
console.log(char); // Output: 栤
Java:
char c = '\u6824';
System.out.println(c); // Output: 栤
JSON:
{"text": "\u6824"} // Value: 栤
Python:
char = '\u6824'
print(char) # Output: 栤
Perl:
my $char = "\x{6824}";
print $char; # Output: 栤
PHP:
$char = "\x{6824}";
echo $char; // Output: 栤
Ruby:
char = "\u{6824}"
puts char # Output: 栤
Rust:
let c = '\u{6824}';
println!("{}", c); // Output: 栤
Go:
char := '\u6824'
fmt.Printf("%c\n", char) // Output: 栤
CSS:
/* CSS content property */
.element::before {
content: "\006824"; /* 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%A4
MD5:
6d8014a40822b342ec29de08192e8162
SHA1:
62de8b4cc9a5282a123beaff9603cf599ef4b2c6
Base64:
5qCk