C:
char c = '\uB92E';
printf("%c\n", c); // Output: 뤮
JavaScript:
const char = '\uB92E';
console.log(char); // Output: 뤮
Java:
char c = '\uB92E';
System.out.println(c); // Output: 뤮
JSON:
{"text": "\uB92E"} // Value: 뤮
Python:
char = '\uB92E'
print(char) # Output: 뤮
Perl:
my $char = "\x{B92E}";
print $char; # Output: 뤮
PHP:
$char = "\x{B92E}";
echo $char; // Output: 뤮
Ruby:
char = "\u{B92E}"
puts char # Output: 뤮
Rust:
let c = '\u{B92E}';
println!("{}", c); // Output: 뤮
Go:
char := '\uB92E'
fmt.Printf("%c\n", char) // Output: 뤮
CSS:
/* CSS content property */
.element::before {
content: "\00B92E"; /* 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%A4%AE
MD5:
9a2d7d688c342f31e94a0dbc731962cb
SHA1:
2619fff2fd1349d835e14f8790360ab71eab2ced
Base64:
66Su