C:
char c = '\u6865';
printf("%c\n", c); // Output: 桥
JavaScript:
const char = '\u6865';
console.log(char); // Output: 桥
Java:
char c = '\u6865';
System.out.println(c); // Output: 桥
JSON:
{"text": "\u6865"} // Value: 桥
Python:
char = '\u6865'
print(char) # Output: 桥
Perl:
my $char = "\x{6865}";
print $char; # Output: 桥
PHP:
$char = "\x{6865}";
echo $char; // Output: 桥
Ruby:
char = "\u{6865}"
puts char # Output: 桥
Rust:
let c = '\u{6865}';
println!("{}", c); // Output: 桥
Go:
char := '\u6865'
fmt.Printf("%c\n", char) // Output: 桥
CSS:
/* CSS content property */
.element::before {
content: "\006865"; /* 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%A1%A5
MD5:
3e3c1513167a3b2d3c87d8bc48ec25e9
SHA1:
579c8d68cdfa151e010368ccfa1144b97a631540
Base64:
5qGl