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