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