C:
char c = '\uB38B';
printf("%c\n", c); // Output: 뎋
JavaScript:
const char = '\uB38B';
console.log(char); // Output: 뎋
Java:
char c = '\uB38B';
System.out.println(c); // Output: 뎋
JSON:
{"text": "\uB38B"} // Value: 뎋
Python:
char = '\uB38B'
print(char) # Output: 뎋
Perl:
my $char = "\x{B38B}";
print $char; # Output: 뎋
PHP:
$char = "\x{B38B}";
echo $char; // Output: 뎋
Ruby:
char = "\u{B38B}"
puts char # Output: 뎋
Rust:
let c = '\u{B38B}';
println!("{}", c); // Output: 뎋
Go:
char := '\uB38B'
fmt.Printf("%c\n", char) // Output: 뎋
CSS:
/* CSS content property */
.element::before {
content: "\00B38B"; /* 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%8B
MD5:
3cb9e463e7702842b03b824963908091
SHA1:
48fb07da00bee9f4bc5c40f470a3eefc079ac008
Base64:
646L