C:
char c = '\u6914';
printf("%c\n", c); // Output: 椔
JavaScript:
const char = '\u6914';
console.log(char); // Output: 椔
Java:
char c = '\u6914';
System.out.println(c); // Output: 椔
JSON:
{"text": "\u6914"} // Value: 椔
Python:
char = '\u6914'
print(char) # Output: 椔
Perl:
my $char = "\x{6914}";
print $char; # Output: 椔
PHP:
$char = "\x{6914}";
echo $char; // Output: 椔
Ruby:
char = "\u{6914}"
puts char # Output: 椔
Rust:
let c = '\u{6914}';
println!("{}", c); // Output: 椔
Go:
char := '\u6914'
fmt.Printf("%c\n", char) // Output: 椔
CSS:
/* CSS content property */
.element::before {
content: "\006914"; /* 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%A4%94
MD5:
26a33b9ddf8c9f5d8a071c28e250297c
SHA1:
a45601efa33db65e7b737551c5331251fdd2f54c
Base64:
5qSU