C:
char c = '\uB37C';
printf("%c\n", c); // Output: 덼
JavaScript:
const char = '\uB37C';
console.log(char); // Output: 덼
Java:
char c = '\uB37C';
System.out.println(c); // Output: 덼
JSON:
{"text": "\uB37C"} // Value: 덼
Python:
char = '\uB37C'
print(char) # Output: 덼
Perl:
my $char = "\x{B37C}";
print $char; # Output: 덼
PHP:
$char = "\x{B37C}";
echo $char; // Output: 덼
Ruby:
char = "\u{B37C}"
puts char # Output: 덼
Rust:
let c = '\u{B37C}';
println!("{}", c); // Output: 덼
Go:
char := '\uB37C'
fmt.Printf("%c\n", char) // Output: 덼
CSS:
/* CSS content property */
.element::before {
content: "\00B37C"; /* 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%8D%BC
MD5:
736522fc4e0c4146c235fb505c8f7af2
SHA1:
87ecc3bdc1bad5b6d91b359997e46d29c7e3104c
Base64:
6428