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