C:
char c = '\u678B';
printf("%c\n", c); // Output: 枋
JavaScript:
const char = '\u678B';
console.log(char); // Output: 枋
Java:
char c = '\u678B';
System.out.println(c); // Output: 枋
JSON:
{"text": "\u678B"} // Value: 枋
Python:
char = '\u678B'
print(char) # Output: 枋
Perl:
my $char = "\x{678B}";
print $char; # Output: 枋
PHP:
$char = "\x{678B}";
echo $char; // Output: 枋
Ruby:
char = "\u{678B}"
puts char # Output: 枋
Rust:
let c = '\u{678B}';
println!("{}", c); // Output: 枋
Go:
char := '\u678B'
fmt.Printf("%c\n", char) // Output: 枋
CSS:
/* CSS content property */
.element::before {
content: "\00678B"; /* 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%9E%8B
MD5:
9b5ad54bb92617dd7097a07130d225b9
SHA1:
219519960459e7700222bd1fd2ebb673298c8b40
Base64:
5p6L