C:
char c = '\u5EA6';
printf("%c\n", c); // Output: 度
JavaScript:
const char = '\u5EA6';
console.log(char); // Output: 度
Java:
char c = '\u5EA6';
System.out.println(c); // Output: 度
JSON:
{"text": "\u5EA6"} // Value: 度
Python:
char = '\u5EA6'
print(char) # Output: 度
Perl:
my $char = "\x{5EA6}";
print $char; # Output: 度
PHP:
$char = "\x{5EA6}";
echo $char; // Output: 度
Ruby:
char = "\u{5EA6}"
puts char # Output: 度
Rust:
let c = '\u{5EA6}';
println!("{}", c); // Output: 度
Go:
char := '\u5EA6'
fmt.Printf("%c\n", char) // Output: 度
CSS:
/* CSS content property */
.element::before {
content: "\005EA6"; /* 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=%E5%BA%A6
MD5:
a9f36f53f1c66f3de00226c1d3516c1e
SHA1:
304fce687a69d5d4a55296796415d46d88953652
Base64:
5bqm