C:
char c = '\u5CF0';
printf("%c\n", c); // Output: 峰
JavaScript:
const char = '\u5CF0';
console.log(char); // Output: 峰
Java:
char c = '\u5CF0';
System.out.println(c); // Output: 峰
JSON:
{"text": "\u5CF0"} // Value: 峰
Python:
char = '\u5CF0'
print(char) # Output: 峰
Perl:
my $char = "\x{5CF0}";
print $char; # Output: 峰
PHP:
$char = "\x{5CF0}";
echo $char; // Output: 峰
Ruby:
char = "\u{5CF0}"
puts char # Output: 峰
Rust:
let c = '\u{5CF0}';
println!("{}", c); // Output: 峰
Go:
char := '\u5CF0'
fmt.Printf("%c\n", char) // Output: 峰
CSS:
/* CSS content property */
.element::before {
content: "\005CF0"; /* 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%B0
MD5:
7aed0340a5dfc2494cd00802721f2e75
SHA1:
9a4761d8cfaa606a1871679950d89a8b95bc8987
Base64:
5bOw