C:
char c = '\u78BE';
printf("%c\n", c); // Output: 碾
JavaScript:
const char = '\u78BE';
console.log(char); // Output: 碾
Java:
char c = '\u78BE';
System.out.println(c); // Output: 碾
JSON:
{"text": "\u78BE"} // Value: 碾
Python:
char = '\u78BE'
print(char) # Output: 碾
Perl:
my $char = "\x{78BE}";
print $char; # Output: 碾
PHP:
$char = "\x{78BE}";
echo $char; // Output: 碾
Ruby:
char = "\u{78BE}"
puts char # Output: 碾
Rust:
let c = '\u{78BE}';
println!("{}", c); // Output: 碾
Go:
char := '\u78BE'
fmt.Printf("%c\n", char) // Output: 碾
CSS:
/* CSS content property */
.element::before {
content: "\0078BE"; /* 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%A2%BE
MD5:
8856c5df4e380fd8828109634b74b44f
SHA1:
2df90844a23b050ef4998904bd68e4dcbf42887c
Base64:
56K+