C:
char c = '\uBCE0';
printf("%c\n", c); // Output: 볠
JavaScript:
const char = '\uBCE0';
console.log(char); // Output: 볠
Java:
char c = '\uBCE0';
System.out.println(c); // Output: 볠
JSON:
{"text": "\uBCE0"} // Value: 볠
Python:
char = '\uBCE0'
print(char) # Output: 볠
Perl:
my $char = "\x{BCE0}";
print $char; # Output: 볠
PHP:
$char = "\x{BCE0}";
echo $char; // Output: 볠
Ruby:
char = "\u{BCE0}"
puts char # Output: 볠
Rust:
let c = '\u{BCE0}';
println!("{}", c); // Output: 볠
Go:
char := '\uBCE0'
fmt.Printf("%c\n", char) // Output: 볠
CSS:
/* CSS content property */
.element::before {
content: "\00BCE0"; /* 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=%EB%B3%A0
MD5:
e945a5cd7687e0f09f2302ec875274b1
SHA1:
cdc503194c9d29ceec2506cf5a35c9508532cb81
Base64:
67Og