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