C:
char c = '\uB2E5';
printf("%c\n", c); // Output: 닥
JavaScript:
const char = '\uB2E5';
console.log(char); // Output: 닥
Java:
char c = '\uB2E5';
System.out.println(c); // Output: 닥
JSON:
{"text": "\uB2E5"} // Value: 닥
Python:
char = '\uB2E5'
print(char) # Output: 닥
Perl:
my $char = "\x{B2E5}";
print $char; # Output: 닥
PHP:
$char = "\x{B2E5}";
echo $char; // Output: 닥
Ruby:
char = "\u{B2E5}"
puts char # Output: 닥
Rust:
let c = '\u{B2E5}';
println!("{}", c); // Output: 닥
Go:
char := '\uB2E5'
fmt.Printf("%c\n", char) // Output: 닥
CSS:
/* CSS content property */
.element::before {
content: "\00B2E5"; /* 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%8B%A5
MD5:
b7132aa1e15a8dc76bcabd67ce3e65c5
SHA1:
11d23f38476fe4b07e655c070c1c786df50cd96f
Base64:
64ul