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