C:
char c = '\uB48E';
printf("%c\n", c); // Output: 뒎
JavaScript:
const char = '\uB48E';
console.log(char); // Output: 뒎
Java:
char c = '\uB48E';
System.out.println(c); // Output: 뒎
JSON:
{"text": "\uB48E"} // Value: 뒎
Python:
char = '\uB48E'
print(char) # Output: 뒎
Perl:
my $char = "\x{B48E}";
print $char; # Output: 뒎
PHP:
$char = "\x{B48E}";
echo $char; // Output: 뒎
Ruby:
char = "\u{B48E}"
puts char # Output: 뒎
Rust:
let c = '\u{B48E}';
println!("{}", c); // Output: 뒎
Go:
char := '\uB48E'
fmt.Printf("%c\n", char) // Output: 뒎
CSS:
/* CSS content property */
.element::before {
content: "\00B48E"; /* 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%92%8E
MD5:
6b761c751ee036e33e428c99ccdbaa50
SHA1:
1791087debac7cd214481c73b8ca9d2a363830bf
Base64:
65KO