C:
char c = '\uB4B5';
printf("%c\n", c); // Output: 뒵
JavaScript:
const char = '\uB4B5';
console.log(char); // Output: 뒵
Java:
char c = '\uB4B5';
System.out.println(c); // Output: 뒵
JSON:
{"text": "\uB4B5"} // Value: 뒵
Python:
char = '\uB4B5'
print(char) # Output: 뒵
Perl:
my $char = "\x{B4B5}";
print $char; # Output: 뒵
PHP:
$char = "\x{B4B5}";
echo $char; // Output: 뒵
Ruby:
char = "\u{B4B5}"
puts char # Output: 뒵
Rust:
let c = '\u{B4B5}';
println!("{}", c); // Output: 뒵
Go:
char := '\uB4B5'
fmt.Printf("%c\n", char) // Output: 뒵
CSS:
/* CSS content property */
.element::before {
content: "\00B4B5"; /* 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%92%B5
MD5:
428edfb1b0fc6d8b48035c5778018357
SHA1:
03799913c898f823f136f4f760e72d41f5261cd3
Base64:
65K1