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