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