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