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