C:
char c = '\u768B';
printf("%c\n", c); // Output: 皋
JavaScript:
const char = '\u768B';
console.log(char); // Output: 皋
Java:
char c = '\u768B';
System.out.println(c); // Output: 皋
JSON:
{"text": "\u768B"} // Value: 皋
Python:
char = '\u768B'
print(char) # Output: 皋
Perl:
my $char = "\x{768B}";
print $char; # Output: 皋
PHP:
$char = "\x{768B}";
echo $char; // Output: 皋
Ruby:
char = "\u{768B}"
puts char # Output: 皋
Rust:
let c = '\u{768B}';
println!("{}", c); // Output: 皋
Go:
char := '\u768B'
fmt.Printf("%c\n", char) // Output: 皋
CSS:
/* CSS content property */
.element::before {
content: "\00768B"; /* 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=%E7%9A%8B
MD5:
e16d2d4eb1a4fb75f30dbe9a322bcc7d
SHA1:
3c8e2748e55877b4d21e491f38f81a38801b556a
Base64:
55qL