C:
char c = '\u6920';
printf("%c\n", c); // Output: 椠
JavaScript:
const char = '\u6920';
console.log(char); // Output: 椠
Java:
char c = '\u6920';
System.out.println(c); // Output: 椠
JSON:
{"text": "\u6920"} // Value: 椠
Python:
char = '\u6920'
print(char) # Output: 椠
Perl:
my $char = "\x{6920}";
print $char; # Output: 椠
PHP:
$char = "\x{6920}";
echo $char; // Output: 椠
Ruby:
char = "\u{6920}"
puts char # Output: 椠
Rust:
let c = '\u{6920}';
println!("{}", c); // Output: 椠
Go:
char := '\u6920'
fmt.Printf("%c\n", char) // Output: 椠
CSS:
/* CSS content property */
.element::before {
content: "\006920"; /* 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%A0
MD5:
27ae58ab1bdba765b6aa2dee423d6909
SHA1:
5e44ccfd3d71391395641fc4f7b449afb9c7567b
Base64:
5qSg