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