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