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