C:
char c = '\uB6E5';
printf("%c\n", c); // Output: 뛥
JavaScript:
const char = '\uB6E5';
console.log(char); // Output: 뛥
Java:
char c = '\uB6E5';
System.out.println(c); // Output: 뛥
JSON:
{"text": "\uB6E5"} // Value: 뛥
Python:
char = '\uB6E5'
print(char) # Output: 뛥
Perl:
my $char = "\x{B6E5}";
print $char; # Output: 뛥
PHP:
$char = "\x{B6E5}";
echo $char; // Output: 뛥
Ruby:
char = "\u{B6E5}"
puts char # Output: 뛥
Rust:
let c = '\u{B6E5}';
println!("{}", c); // Output: 뛥
Go:
char := '\uB6E5'
fmt.Printf("%c\n", char) // Output: 뛥
CSS:
/* CSS content property */
.element::before {
content: "\00B6E5"; /* 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%9B%A5
MD5:
7a9d92d036ac27f58b80a59f3bcd2e2a
SHA1:
653d46e890e7a5befdf63acffe8b87d1002fc9db
Base64:
65ul