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