C:
char c = '\uB3B8';
printf("%c\n", c); // Output: 뎸
JavaScript:
const char = '\uB3B8';
console.log(char); // Output: 뎸
Java:
char c = '\uB3B8';
System.out.println(c); // Output: 뎸
JSON:
{"text": "\uB3B8"} // Value: 뎸
Python:
char = '\uB3B8'
print(char) # Output: 뎸
Perl:
my $char = "\x{B3B8}";
print $char; # Output: 뎸
PHP:
$char = "\x{B3B8}";
echo $char; // Output: 뎸
Ruby:
char = "\u{B3B8}"
puts char # Output: 뎸
Rust:
let c = '\u{B3B8}';
println!("{}", c); // Output: 뎸
Go:
char := '\uB3B8'
fmt.Printf("%c\n", char) // Output: 뎸
CSS:
/* CSS content property */
.element::before {
content: "\00B3B8"; /* 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%B8
MD5:
3d637256e7912f1cd9ad894d6da0bbfd
SHA1:
79dac03e7ff8a78b8d09ad69c880b7ee93b82b5e
Base64:
6464