C:
char c = '\u5CF1';
printf("%c\n", c); // Output: 峱
JavaScript:
const char = '\u5CF1';
console.log(char); // Output: 峱
Java:
char c = '\u5CF1';
System.out.println(c); // Output: 峱
JSON:
{"text": "\u5CF1"} // Value: 峱
Python:
char = '\u5CF1'
print(char) # Output: 峱
Perl:
my $char = "\x{5CF1}";
print $char; # Output: 峱
PHP:
$char = "\x{5CF1}";
echo $char; // Output: 峱
Ruby:
char = "\u{5CF1}"
puts char # Output: 峱
Rust:
let c = '\u{5CF1}';
println!("{}", c); // Output: 峱
Go:
char := '\u5CF1'
fmt.Printf("%c\n", char) // Output: 峱
CSS:
/* CSS content property */
.element::before {
content: "\005CF1"; /* 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%B3%B1
MD5:
1cf306b1493ef5d941ac922ba6f5985b
SHA1:
07b53a551d4f896946b39e0f44e8493fdf492272
Base64:
5bOx