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