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