C:
char c = '\u68AF';
printf("%c\n", c); // Output: 梯
JavaScript:
const char = '\u68AF';
console.log(char); // Output: 梯
Java:
char c = '\u68AF';
System.out.println(c); // Output: 梯
JSON:
{"text": "\u68AF"} // Value: 梯
Python:
char = '\u68AF'
print(char) # Output: 梯
Perl:
my $char = "\x{68AF}";
print $char; # Output: 梯
PHP:
$char = "\x{68AF}";
echo $char; // Output: 梯
Ruby:
char = "\u{68AF}"
puts char # Output: 梯
Rust:
let c = '\u{68AF}';
println!("{}", c); // Output: 梯
Go:
char := '\u68AF'
fmt.Printf("%c\n", char) // Output: 梯
CSS:
/* CSS content property */
.element::before {
content: "\0068AF"; /* 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%A2%AF
MD5:
76d96c3840e4405dc826a4fd9e29b31f
SHA1:
2359322718f5c708ee967ac4f90e4316eaadd243
Base64:
5qKv