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