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