C:
char c = '\uB2F1';
printf("%c\n", c); // Output: 닱
JavaScript:
const char = '\uB2F1';
console.log(char); // Output: 닱
Java:
char c = '\uB2F1';
System.out.println(c); // Output: 닱
JSON:
{"text": "\uB2F1"} // Value: 닱
Python:
char = '\uB2F1'
print(char) # Output: 닱
Perl:
my $char = "\x{B2F1}";
print $char; # Output: 닱
PHP:
$char = "\x{B2F1}";
echo $char; // Output: 닱
Ruby:
char = "\u{B2F1}"
puts char # Output: 닱
Rust:
let c = '\u{B2F1}';
println!("{}", c); // Output: 닱
Go:
char := '\uB2F1'
fmt.Printf("%c\n", char) // Output: 닱
CSS:
/* CSS content property */
.element::before {
content: "\00B2F1"; /* 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%B1
MD5:
64f0c8fb71b8bf0098995675a7afa72f
SHA1:
47dcb57327d29ac99260edd15e70009d5acb038f
Base64:
64ux