C:
char c = '\uB3A4';
printf("%c\n", c); // Output: 뎤
JavaScript:
const char = '\uB3A4';
console.log(char); // Output: 뎤
Java:
char c = '\uB3A4';
System.out.println(c); // Output: 뎤
JSON:
{"text": "\uB3A4"} // Value: 뎤
Python:
char = '\uB3A4'
print(char) # Output: 뎤
Perl:
my $char = "\x{B3A4}";
print $char; # Output: 뎤
PHP:
$char = "\x{B3A4}";
echo $char; // Output: 뎤
Ruby:
char = "\u{B3A4}"
puts char # Output: 뎤
Rust:
let c = '\u{B3A4}';
println!("{}", c); // Output: 뎤
Go:
char := '\uB3A4'
fmt.Printf("%c\n", char) // Output: 뎤
CSS:
/* CSS content property */
.element::before {
content: "\00B3A4"; /* 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%A4
MD5:
dd64f90e682896df057492e0e26b7157
SHA1:
07db1a09d3782d0564100b7d7d0931c147a9f7a0
Base64:
646k