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