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