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