C:
char c = '\u6809';
printf("%c\n", c); // Output: 栉
JavaScript:
const char = '\u6809';
console.log(char); // Output: 栉
Java:
char c = '\u6809';
System.out.println(c); // Output: 栉
JSON:
{"text": "\u6809"} // Value: 栉
Python:
char = '\u6809'
print(char) # Output: 栉
Perl:
my $char = "\x{6809}";
print $char; # Output: 栉
PHP:
$char = "\x{6809}";
echo $char; // Output: 栉
Ruby:
char = "\u{6809}"
puts char # Output: 栉
Rust:
let c = '\u{6809}';
println!("{}", c); // Output: 栉
Go:
char := '\u6809'
fmt.Printf("%c\n", char) // Output: 栉
CSS:
/* CSS content property */
.element::before {
content: "\006809"; /* 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%89
MD5:
838cc71c3d1ccbc8e56d311310b1cbcb
SHA1:
bea5eeeadffa1f418fd63e5936a54df3a01a3281
Base64:
5qCJ