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