C:
char c = '\uB6A2';
printf("%c\n", c); // Output: 뚢
JavaScript:
const char = '\uB6A2';
console.log(char); // Output: 뚢
Java:
char c = '\uB6A2';
System.out.println(c); // Output: 뚢
JSON:
{"text": "\uB6A2"} // Value: 뚢
Python:
char = '\uB6A2'
print(char) # Output: 뚢
Perl:
my $char = "\x{B6A2}";
print $char; # Output: 뚢
PHP:
$char = "\x{B6A2}";
echo $char; // Output: 뚢
Ruby:
char = "\u{B6A2}"
puts char # Output: 뚢
Rust:
let c = '\u{B6A2}';
println!("{}", c); // Output: 뚢
Go:
char := '\uB6A2'
fmt.Printf("%c\n", char) // Output: 뚢
CSS:
/* CSS content property */
.element::before {
content: "\00B6A2"; /* 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%9A%A2
MD5:
a553772fa504fac3ad9e216177ccec60
SHA1:
53baef6db554dae3395629f11d9d54843f719368
Base64:
65qi