C:
char c = '\uB3AA';
printf("%c\n", c); // Output: 뎪
JavaScript:
const char = '\uB3AA';
console.log(char); // Output: 뎪
Java:
char c = '\uB3AA';
System.out.println(c); // Output: 뎪
JSON:
{"text": "\uB3AA"} // Value: 뎪
Python:
char = '\uB3AA'
print(char) # Output: 뎪
Perl:
my $char = "\x{B3AA}";
print $char; # Output: 뎪
PHP:
$char = "\x{B3AA}";
echo $char; // Output: 뎪
Ruby:
char = "\u{B3AA}"
puts char # Output: 뎪
Rust:
let c = '\u{B3AA}';
println!("{}", c); // Output: 뎪
Go:
char := '\uB3AA'
fmt.Printf("%c\n", char) // Output: 뎪
CSS:
/* CSS content property */
.element::before {
content: "\00B3AA"; /* 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%8E%AA
MD5:
e191f41750332e82b781187a492d4453
SHA1:
002db3c4464035cddcec5fbc22aed8064575e961
Base64:
646q