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