C:
char c = '\u6906';
printf("%c\n", c); // Output: 椆
JavaScript:
const char = '\u6906';
console.log(char); // Output: 椆
Java:
char c = '\u6906';
System.out.println(c); // Output: 椆
JSON:
{"text": "\u6906"} // Value: 椆
Python:
char = '\u6906'
print(char) # Output: 椆
Perl:
my $char = "\x{6906}";
print $char; # Output: 椆
PHP:
$char = "\x{6906}";
echo $char; // Output: 椆
Ruby:
char = "\u{6906}"
puts char # Output: 椆
Rust:
let c = '\u{6906}';
println!("{}", c); // Output: 椆
Go:
char := '\u6906'
fmt.Printf("%c\n", char) // Output: 椆
CSS:
/* CSS content property */
.element::before {
content: "\006906"; /* 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%86
MD5:
75a3f626256254346a4be80cb69a4171
SHA1:
750df060cecaf2f61b04edad9ea08b633060a19b
Base64:
5qSG