C:
char c = '\uB92F';
printf("%c\n", c); // Output: 뤯
JavaScript:
const char = '\uB92F';
console.log(char); // Output: 뤯
Java:
char c = '\uB92F';
System.out.println(c); // Output: 뤯
JSON:
{"text": "\uB92F"} // Value: 뤯
Python:
char = '\uB92F'
print(char) # Output: 뤯
Perl:
my $char = "\x{B92F}";
print $char; # Output: 뤯
PHP:
$char = "\x{B92F}";
echo $char; // Output: 뤯
Ruby:
char = "\u{B92F}"
puts char # Output: 뤯
Rust:
let c = '\u{B92F}';
println!("{}", c); // Output: 뤯
Go:
char := '\uB92F'
fmt.Printf("%c\n", char) // Output: 뤯
CSS:
/* CSS content property */
.element::before {
content: "\00B92F"; /* 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%AF
MD5:
156acfd2912bc3dc267d0b071f7c1518
SHA1:
649d80199c3c4450cbfa6ae23e28c26660221607
Base64:
66Sv